This script will gonna teach you, how facebook, google, linkedin, yahoo,
twitter, etc. detect your mobile and redirect automatically to there
mobile site. So below I've posted jQuery script which actually do this. Here I've given the example for iphone.
jQuery Code
<script type="text/javascript">
<!--
if(screen.width<=320)
{
document.location="your-mobile-site-url.com";
}
//-->
</script>
jQuery Code
<script type="text/javascript">
<!--
if(screen.width<=320)
{
document.location="your-mobile-site-url.com";
}
//-->
</script>
No comments:
Post a Comment