Hello,
I am trying to use the alsoResize option. It works when I write this:
$(obj).resizable({ minHeight: 150, minWidth: 280, alsoResize: '.tab_content'});
but the problem is that it's resizing all 'tab_content' elements in the page.
I want it to be relative to 'obj' which also contains a 'tab_content',
I tried: alsoResize: $('.tab_content',obj)
but it didn't work,
any suggestions,
Thanks