Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jQuery Window Resize (do this when window is resized to this width) Re: jQuery Window Resize (do this when window is resized to this width)

#111831
Senff
Participant

window.onresize = function(event) {
viewportwidth = $(window).width();
if (viewportwidth<700) {
// some jquery stuff here;
}
}