jQuery UI ダイアログがあります。
$("#dialog").dialog({
modal: true,
closeOnEscape: false,
resizable: false,
autoOpen: false,
open: function() {
$(".ui-dialog-titlebar").hide();
}
});
AJAX 呼び出しの直前にこのダイアログを開こうとしています。alert
Firefox を使用して動作しますが、ダイアログを開いた直後に , を入力しない限り、IE では開きません。誰でも何が問題なのか教えてもらえますか? 次のコードを使用しています。
$("button").click(function() {
$("#dialog").dialog('open');
//alert('test'); //if I put this alert, the dialog will open
$.ajax({
type: "POST",
url: "testing.txt",
async: false,
dataType: "text",
success: function(returnText) {
$("#dialog").dialog('close');
$("#textarea").text(returnText);
},
error: function() {
$("#dialog").dialog('close');
}
});
});