I need some help with a Zen subtheme using responsive-sidebars.css I have some javascript that I only want to run if the screen is bigger than 480px. The javascript is:
(function ($) {
jQuery(document).ready(function(){
$('#selllink').trigger("click");
});
})
I am not sure how I would restrict this. Many Thanks Julie