Skip to content

Instantly share code, notes, and snippets.

@davidbrooks
Created February 19, 2014 15:27
Show Gist options
  • Save davidbrooks/9094272 to your computer and use it in GitHub Desktop.
Save davidbrooks/9094272 to your computer and use it in GitHub Desktop.
Quick mobile/desktop detection
var test_check = parseInt($('footer').css('border-bottom-width'));
if (test_check == '1') {
$('body').addClass('mobile');
} else {
$('body').addClass('not_mobile');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment