Skip to content

Instantly share code, notes, and snippets.

@mauriciosoares
Last active August 29, 2015 14:02
Show Gist options
  • Save mauriciosoares/30680f254bc0b31670b4 to your computer and use it in GitHub Desktop.
Save mauriciosoares/30680f254bc0b31670b4 to your computer and use it in GitHub Desktop.
var device = navigator.userAgent.toLowerCase();
if(device.indexOf('mac') != -1) {
console.log('É um mac');
} else if(device.indexOf('iphone') != -1) {
console.log('É um iphone');
} else if(device.indexOf('android') != -1) {
console.log('É um iphone');
} else {
console.log('Não identificado');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment