私は jquery モバイルで作業していて、ダイアログの作成に simpledialog2 を使用しました。
私のコード
<li><a href="#" data-rel="dialog" onclick="return openpopup();" style="font-weight:normal;">Register</a></li>
function openpopup() {
$('#mobile-login-panel').simpledialog2({
autoOpen: false,
resizable: true,
height: 'auto',
headerText: 'Sign in',
headerClose: true,
width:'auto',
headerClose: true,
blankContent:"SomeHtml"
});
$("div.ui-simpledialog-container ").appendTo($("form#frmdiaLogin"));
return false;
}
このダイアログが正しく開くようになりました。しかし、閉じるとエラーがスローされます
$.mobile.sdCurrentDialog.sdIntContent.find('select').each(function() {
解決策はありますか?