Nesting resizable elements

Posted by Travis on Stack Overflow See other posts from Stack Overflow or by Travis
Published on 2010-05-04T10:22:41Z Indexed on 2010/05/04 10:28 UTC
Read the original article Hit count: 653

I am using jQuery UI's resizable for nested divs, like so:

<div id="resizable1">
   <div id="resizable2">
   </div>
</div>

I'm running into a problem where disabling resizable 1 also disables resizable 2. So, if I call the following...

$("#resizable1").resizable("disable");

...then I can no longer resize resizable2 either.

Has anyone else encountered this, and know of a way around this behaviour?

Thanks,

Travis

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ui