I have this problem, I need script
should work in live time
when I resize browser window less than 340px alert window is less than 340px
and it should happened only one time when $(window)
size is less then 340px or more 340px
it should be every resize less then 340px or more
if($(window) < 340){
alert("window is less than 340px");
}else{
alert("123");
}