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?
July 1, 2013 at 4:15 pm
#141179
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();
}