Install html (with HTML5 DOCTYPE) as follows:
<a class="fancybox fancybox.iframe" data-width="675" data-height="470" href="test.html" >test</a>
<a class="fancybox fancybox.iframe" data-width="400" data-height="200" href="test2.html" >test 2</a>
(set widthand heightin the attributes data-for each element)
then this is a script:
$("a.fancybox").fancybox({
fitToView: false,
afterLoad: function(){
this.width = $(this.element).data("width");
this.height = $(this.element).data("height");
}
});
should do the trick in fancybox v2.x
source
share