How To Disable Javascript In Media Query
I want to dissable javascripts in media query. @media only screen (max-device-width : 568px) { .sidebar { display: none; } #navmenu { margin-top:0px; width:auto; padding:10px
Solution 1:
You could wrap your script in an if statement that checks how wide the screen is like this:
if(window.innerWidth > 568){
...execute script
}
However, that will only execute once, so what if you resize your browser window? You could have an event listener that executes your script whenever you resize the browser.
window.addEventListener('resize', function(){
if(window.innerWidth > 568){
...execute script
}
});
Solution 2:
When you use jQuery - this code will help you
$(window).resize(function() {
if ($(window).width()>992){
...execute script
}
});
Solution 3:
this would work better....
if ($(window).width()>568){
...execute script
}
Post a Comment for "How To Disable Javascript In Media Query"