CSS
iframe {
display: none;
}
JS
$('iframe').load(function() {
$('iframe').fadeIn('slow');
});
HTML
<a href="http://example.com" target="ifrm">external link</a>
<iframe name="ifrm"></iframe>
上記は IE と Chrome では機能しますが、Firefox で試してみると、iframe が表示されません。回避策はありますか?