Skip to content

Instantly share code, notes, and snippets.

@flovilmart
Last active August 29, 2015 14:24
Show Gist options
  • Save flovilmart/547ebe66e56360889473 to your computer and use it in GitHub Desktop.
Save flovilmart/547ebe66e56360889473 to your computer and use it in GitHub Desktop.
function isMobile() {
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1;
var isiPhone = ua.indexOf("iphone") > -1;
var isiPod = ua.indexOf("ipod") > -1;
return (isAndroid || isiPhone || isiPod);
}
// In the callback
if(isMobile()) {
window.location.href = caption.get("spotrURL");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment