when i using the following code in a file.
var width=jQuery(window).width();
if(width<980){
jQuery('.std .home-right').hide();
}else{
jQuery('.std .home-right').show();
}
when i resize the window width less than 980px, the .std .home-right can't hide, when i resize the window width less than 980px to bigger than 980, the .std .home-right can't show. why?