Skip to content

Instantly share code, notes, and snippets.

@Miroan
Created May 9, 2011 22:55
Show Gist options
  • Save Miroan/963598 to your computer and use it in GitHub Desktop.
Save Miroan/963598 to your computer and use it in GitHub Desktop.
Redirection to Mobile
<script type="text/javascript">
if (screen.width<800)
{
window.location="http://yourdomain.com/mobile/"
}
else
{
window.location="http://yourdomain.com/"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment