Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created March 15, 2017 16:33
Show Gist options
  • Save Farmatique/8510e0a1cc5ae178de4f62883bb64c03 to your computer and use it in GitHub Desktop.
Save Farmatique/8510e0a1cc5ae178de4f62883bb64c03 to your computer and use it in GitHub Desktop.
mobile safari detector
var ua = navigator.userAgent;
if(ua.match(/(iPod|iPhone|iPad)/) !== null && ua.match(/AppleWebKit/) !== null && ua.search('CriOS') < 0){
console.log('this is mobile safari');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment