Is it possible to only run certain jQuery scripts if the screen/device size is above xxx pixels wide?
So, for example, I only want to run a slideshow when people are
If you want to check width size after windows is resized then:
$(window).resize(function() { if( $(this).width() > width ) { // code } });