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
You can use $(window).width()
$(window).width()
if($(window).width() >= 1024){ // do your stuff }
Demo ---> http://jsfiddle.net/fh2eC/1/
--->