I'm using fancybox 1.2.1 to open an iframe. My problem is my width, height and scrolling options don't actually do anything. Am I missing something? It just opens up at the default size.
Heres the call:
$(document).ready(function(){
$('a[rel=gallery]').fancybox({
'width':920,
'height':700,
'scrolling':'no'
});
});
And heres the link in the page:
<a class="iframe" href="http://www.myiframedomain.com/page.jsp" rel="gallery">
<img src="/img/content/button.png" width="210" height="115" alt="" />
</a>
Thanks.