jquery UI dialog に iframe があり、その src を doument.ready event に設定しています。
$(document).ready(function() {
$("#iframe").attr("src", whatever);
$("#button").click(function() { $("#dialog").dialog(); });
});
<div id="dialog">
<iframe src="" id="iframe"></iframe>
<div>
すべてが順調に進んでいますclick over the button dialog open
がthe problem
、それはloads iframe content everytime when dialog open
.Iwant to stop
この動作とload the contents only once at document.ready event
.どうすればこれを行うことができますか?