Quantcast
Channel: Width-only resize with jQuery UI? - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Eugene Ananin for Width-only resize with jQuery UI?

FishBasketGordo's answer didn't work for me for some reason. I was able to fix the problem by using the ResizableWidget's resize[API Ref] event. The following example assumes that you are resizing...

View Article


Answer by FishBasketGordo for Width-only resize with jQuery UI?

The Resizable widget has options for minHeight[API Ref] and maxHeight[API Ref]. If you set those equal to your viewport height, only the width will be resizable.var wndHeight = $(window).height(); //...

View Article

Answer by Andrés Torres for Width-only resize with jQuery UI?

you have tried with the css properties min-height, max-height, min-width and max-width? if your using a plugin, the most common thing is that those properties will work for you as limits for resizing...

View Article

Width-only resize with jQuery UI?

I have a webpage that's divided into two columns. I have made these columns resizable. Is there any way to allow only the width to resize, and not height? Also, when I resize one column the width of...

View Article
Browsing latest articles
Browse All 4 View Live