var alsoResize= uiDialog.resizable("option","alsoResize").add(myDiv);
uiDialog.resizable("option","alsoResize",alsoResize);
It doesn't work, and I cannot understand why. Tracing through Firebug, alsoResize gets the *correct* collection of ui-dialog-content and myDiv, but when it comes to _alsoResize, it only processes the first in the collection. In fact, it only sees one. That is, if I reverse the order or elements in alsoResize, the functionality breaks.
The fact that I can break it tells me that I am hitting the right spot. Can someone please enlighten me as to why I am losing parts of my collection?
Thanks.