Hey Jas,
I tried as you suggested but it doesn't seem to work for me.
I turned these lines:
} else if (href.match("iframe") || elem.className.indexOf
("iframe") >= 0) {
_set_content('<iframe id="fancy_frame"
onload="$.fn.fancybox.showIframe()" name="fancy_iframe' + Math.round
(Math.random()*1000) + '" frameborder="0" hspace="0" src="' + href +
'"></iframe>', opts.frameWidth, opts.frameHeight);
into these lines:
} else if (href.match("iframe") || elem.className.indexOf
("iframe") >= 0) {
$.fn.fancybox.showLoading();
_set_content('<iframe id="fancy_frame"
onload="$.fn.fancybox.showIframe()" name="fancy_iframe' + Math.round
(Math.random()*1000) + '" frameborder="0" hspace="0" src="' + href +
'"></iframe>', opts.frameWidth, opts.frameHeight);
Is that what you meant?
I'm also using the edit that allows the easing for iFrame / AJAX
content, would this affect this?
X10