My code opens a jQuery UI dialog and uses AJAX to load the content. Several other widgets are being initialized inside the dialog. When the dialog is closed, I destroy() and remove() it's div, but it does not destroy the widgets inside.
How do I properly remove all elements inside mydiv on dialog close?
// mydiv contains variable content
mydiv.dialog({
autoOpen: true,
close: function(){
// destroy mydiv and all widgets inside it
mydiv.dialog('destroy').remove();
alert('Unfortunatelly, inner dialog remained. How to get rid of ALL widgets placed inside "mydiv?"');
// How do i destroy everything inside?
}
});
Interactive sample: http://jsfiddle.net/r4cHY/4/
Thanks!