Skip to content

Instantly share code, notes, and snippets.

@ei-grad
Last active June 8, 2017 21:36
Show Gist options
  • Save ei-grad/a7f52f732a30e924a96b4f7ec0a20df5 to your computer and use it in GitHub Desktop.
Save ei-grad/a7f52f732a30e924a96b4f7ec0a20df5 to your computer and use it in GitHub Desktop.
var agent = navigator.userAgent.toLowerCase();
if (/iphone|ipad|ipod/i.test(agent)) {
window.location = 'https://{appstore_link}';
}
else if (/android/i.test(agent)) {
window.location = 'https://{gplay_link}';
}
else {
window.location = 'http://{web_version}';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment