Highslide で動的に生成された iframe を読み込むにはどうすればよいですか? HTML部分:
<div id="fr">Get iframe</div>
<div id="test999">This is a test</div>
<p><iframe id="ifr"></iframe></p>
jQuery の部分:
$(function () {
$("#fr").click(function() {
$('iframe').contents().find('body').html($('#test999').html());
return hs.htmlExpand(this,{ contentId: 'ifr',objectType: 'iframe' } );
});
「Get iframe」をクリックすると、Highslide はローダーを回転させ続けますが、ウィンドウは開きませんか?
どうすればこれを修正できますか?
ありがとう!