Skip to content

Instantly share code, notes, and snippets.

@fdcore
Created August 31, 2017 20:08
Show Gist options
  • Save fdcore/6f6f9ea646df89dc3e33449f6efb275d to your computer and use it in GitHub Desktop.
Save fdcore/6f6f9ea646df89dc3e33449f6efb275d to your computer and use it in GitHub Desktop.
Check is on mobile view
/*
#mobile_element {
display: none;
}
@media (max-width: 768px) {
#mobile_element {
display: block;
}
}
*/
var isMobile = ($('#mobile_element:visible').length > 0);
$( window ).resize(function() {
isMobile = ($('#mobile_element:visible').length > 0);
});
if(isMobile) {
console.log('you on mobile');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment