I'm just wanting to disable my Jquery script, so as not to run on devices smaller than 768px, is it possible?
I'm just wanting to disable my Jquery script, so as not to run on devices smaller than 768px, is it possible?
You can put a condition if the width of the screen is greater than 768, run the script, otherwise nothing will be executed.
if ($(window).width() > 768) {
//Codigo
}