I have this code and I wan't to say, if the window is not smaller than 1024, don't do any of these things. How do I write this?
$(window).resize(function(){
if ($(window).width() <= 1024) {
$('#right > .info').removeClass('hidden');
$('#middle').remove();
}
else {
}
});