Questions tagged [jquery-ui-resizable]

The jQuery UI Resizable plugin makes selected elements resizable (meaning they have draggable resize handles).

The jQuery UI Resizable plugin makes selected elements resizable (meaning they have draggable resize handles). You can specify one or more handles as well as min and max width and height.

All callbacks (start,stop,resize) receive two arguments: The original browser event and a prepared ui object.

Useful links


Related Tags

392 questions
82
votes
7 answers

How to resize ONLY horizontally or vertically with jQuery UI Resizable?

The only solution I've found is to set the max and min height or width with the current value. Example: foo.resizable({ maxHeight: foo.height(), minHeight: foo.height() }); But this is really ugly, especially if I have to change the…
Diego
  • 16,436
  • 26
  • 84
  • 136
31
votes
7 answers

jQuery UI Resizable alsoResize reverse

How to make the jQuery UI Resizable alsoResize reverse direction. suppose in the html there is two div tag is there, if i resize in upward means the other thing has to resize downward