I have a resizable container div. Inside that div there's another resizable div. If I destroy the resize handler of the container div, the inner div's resize handler is destroyed as well. Like this:
$(".container").resizable("destroy");
Is there a way to destroy resize handler of the container but keep the resize handler on the div inside the container?