Skip to content

Instantly share code, notes, and snippets.

@Metaviolet
Created March 31, 2016 23:09
Show Gist options
  • Select an option

  • Save Metaviolet/40187e3c0cf309aed6eab9f35bb1cc5f to your computer and use it in GitHub Desktop.

Select an option

Save Metaviolet/40187e3c0cf309aed6eab9f35bb1cc5f to your computer and use it in GitHub Desktop.
Detección de navegador móvil
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
// some code..
}
//jQuery way
$.browser.device = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment