Having Trouble with Dialogs + IE6
Hello,
I'm having some issues with JQuery UI 1.7.1, dialogs and IE6. In one
function, I change the content of the dialog and open it. This results
in a dialog having buttons that cannot be pressed, text that cannot be
selected, etc.
below is code for populating and opening the dialog.
$("#modulePopup").html(returnHTML);
$("#modulePopup").dialog("option","title",findHidden(returnHTML));
if (!$("#modulePopup").dialog("isOpen"))
{ $("#modulePopup").dialog("open"); }
Thanks