Skip to content

Instantly share code, notes, and snippets.

@jonaharagon
Created September 1, 2014 16:11
Show Gist options
  • Save jonaharagon/467eb32fcc4b0503e243 to your computer and use it in GitHub Desktop.
Save jonaharagon/467eb32fcc4b0503e243 to your computer and use it in GitHub Desktop.
Redirect Mobile Websites
<script>
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
window.location = "CHANGE THIS TO MOBILE SITE";
}
</script>
<script>// <![CDATA[
if (screen.width <= 800) {
document.location = "CHANGE THIS TO MOBILE SITE";
}
// ]]></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment