Skip to content

Instantly share code, notes, and snippets.

@nicastelo
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicastelo/4d109a60d66ab1b01eeb to your computer and use it in GitHub Desktop.
Save nicastelo/4d109a60d66ab1b01eeb to your computer and use it in GitHub Desktop.
<script src="http://cdnjs.cloudflare.com/ajax/libs/mobile-detect/0.4.3/mobile-detect.min.js"></script>
<script>
var md = new MobileDetect(window.navigator.userAgent);
if (md.mobile()) {
setTimeout(function(){ location.href = "http://m.tusitio.com"; }, 5000);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment