Fancybox keeps opening these images in new windows.
There are no JS errors in console.
Here is my HTML:
<a class="fancybox" rel="group" href="//fpoimg.com/1200x800">
<img src="//fpoimg.com/80x80" />
</a>
<a class="fancybox" rel="group" href="//fpoimg.com/1200x800">
<img src="//fpoimg.com/80x80" />
</a>
<a class="fancybox" rel="group" href="//fpoimg.com/1200x800">
<img src="//fpoimg.com/80x80" />
</a>
Here is my JS:
$(document).ready(function() {
$("a.fancybox").fancybox();
});
Is it something to do with them being remote images? I've never had this not work.
Racking my brain here.
Thanks for any help.