Problem for opening jQuery dialog box in ie8
- by user291247
Hello,
I am using jQuery dialog box and having problem to open it in ie8 in other browsers it will opens but having problem in ie8 only.
Also I have one more problem some times ajax request is not working in my dialog box on any browser.
code.
// Dialog
$('#login_div').dialog({
autoOpen: false,
width: 600,
buttons: {
"Cancel": function() {
$(this).dialog("close");
}
}
});
// Dialog Link - login_div
$('#dialog_link').click(function(){
$('#login_div').dialog({ autoOpen: false });
//$('#login_div').show();
$('#login_div').dialog('open');
return false;
});