Skip to content

Instantly share code, notes, and snippets.

@imloama
Forked from cssmagic/auto-redir-mobile.js
Last active August 29, 2015 14:15
Show Gist options
  • Save imloama/05724c70bed6a49989c1 to your computer and use it in GitHub Desktop.
Save imloama/05724c70bed6a49989c1 to your computer and use it in GitHub Desktop.
var _ua = _ua || {};
_ua.str = navigator.userAgent.toLowerCase();
_ua.isAndroid = _ua.str.indexOf('android') > -1 && _ua.str.indexOf('mobile') > -1;
_ua.isIPhone = /\(i(?:phone|pod);/.test(_ua.str);
if (_ua.isAndroid || _ua.isIPhone) {
location.href = 'http://m.example.com/';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment