I'm trying to implement magnific popup on my website. It works on IE10, Firefox end even on iPad. But for some reason the images are not showing in IE8 in popup mode. (I have not checked in IE9). All it shows is a white screen. What could be the issue? Here is my link: http://www.fietseling.org/media/routes2013/index.html
This the code: Magnific Popup
<!-- Magnific Popup core CSS file -->
<link rel="stylesheet" href="http://www.fietseling.org/templates/nuni_fietseling/css/magnific-popup.css">
<!-- jQuery 1.7.2+ or Zepto.js 1.0+ -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<!-- Magnific Popup core JS file -->
<script type="text/javascript" src="http://www.fietseling.org/templates/nuni_fietseling/js/jquery.magnific-popup.js"></script>
</head>
<body>
<div class="window-content">
<img src="fotos/routekaart2013fotos_groot2.jpg" width="3000" height="1809" border="0" usemap="#Map"/>
<map name="Map">
<area shape="rect" coords="420,25,570,75" alt="Fietseling" href="http://www.fietseling.org/routes/algemene-routekaart">
<area shape="rect" coords="1320,490,1350,515" alt="Fietseling" class="test-popup-link" href="fotos/hers01_miemaan.jpg">
</map>
</div>
<script>
$(document).ready(function() {
$('.test-popup-link').magnificPopup({type:'image'});
});
</script>
</body>
</html>
Many thanks