Skip to content

Instantly share code, notes, and snippets.

@fastcodecoq
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save fastcodecoq/cc50796d6a0165f4c516 to your computer and use it in GitHub Desktop.

Select an option

Save fastcodecoq/cc50796d6a0165f4c516 to your computer and use it in GitHub Desktop.
window.navigator = window.navigator || {};
window.esMovil = navigator.userAgent ? /android|ios|firefoxos|blackberry|tyzen|webos|phone|mobile/g.test(navigator.userAgent.toLowerCase()) : null;
//USO
// alert( esMovil ? 'Soy un móvil' : 'No soy un móvil :/' ) ;
// if(esMovil) console.log('Soy un móvil') else console.log('No soy un móvil :/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment