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>
The above works in IE and Chrome, but when I try it out in Firefox, the iframe never displays. Any workarounds ?