Skip to content

Instantly share code, notes, and snippets.

@juanbzpy
Created August 27, 2012 22:26
Show Gist options
  • Save juanbzpy/3492911 to your computer and use it in GitHub Desktop.
Save juanbzpy/3492911 to your computer and use it in GitHub Desktop.
Mobile Detection js & jQuery
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
$('body').css('background', 'url(img/extra_clean_paper_3.png)');
}
else {
var bg = { 'background' : 'url(img/bg7.jpg) fixed' }
$('body').css(bg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment