Forums

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

Home Forums Other Responsive Design – Is it worth accounting for drastic resizing of browser viewport? Re: Responsive Design – Is it worth accounting for drastic resizing of browser viewport?

#141179
TheDoc
Member

I generally always support browser resizing since it’s usually really easy to do.

Let’s say you had a function called `setUpSlider()` that you run when the page loads to get your slider all set up. You could easily run that same function on resize:

$(window).resize( function () {
setUpSlider();
}