How To Fully Destroy jQuery UI Dialog Boxes

I was having issues with jQuery UI dialogs being hidden and not fully removed. Had same issues with both native dialog and the dialogwrapper plugin. The following code would hide, but not fully remove the div, for whatever reason:
1 |
jQuery(this).dialog('destroy'); |
So this is what I used instead:
1 |
jQuery('#'+this.id).remove(); |
!! UPDATE: After being coached by the […]