Skip to content

Instantly share code, notes, and snippets.

@philippebarbosa
Created June 5, 2013 08:17
Show Gist options
  • Save philippebarbosa/5712392 to your computer and use it in GitHub Desktop.
Save philippebarbosa/5712392 to your computer and use it in GitHub Desktop.
URL redirect if mobile/tablet
<script>
var mobile = (/iphone|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) { document.location = "http://www.yoururl.com/mobile"; }
if( navigator.userAgent.match(/iPad/i) != null ){ document.location = "http://www.yoururl.com/ipad"; }
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment