I'm using Fancybox in a bought multipurpose template called YALU. However Fancybox iframes doesn't work in IE 8. The overlay opens, but no content is loaded (white content). I also tried to disable the preload function in fancybox with no effect.
All other browsers (Firefox, Chrome, even IE 9) are working good. You can have a look here(click the first sample image).
I've been looking for a solution for days now, but haven't found any yet.
Here is some source code from the Template:
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
[...]
This is part of the jquery script:
jQuery(window).load(function($) {
if(jQuery().fancybox) {
jQuery('.openfancybox').fancybox();
}
[...]
This is my a-Tag:
<a data-fancybox-type="iframe" href="404.html" class="openfancybox fancybox.iframe">...</a>
Can anyone help?
Thanks in advance Jan