Currently using Fancybox 1.2.6 in conjunction with JQuery 1.2.6,
Sample Code:
<script type="text/javascript>
$(document).ready(function() {
$("a.iframe").fancybox({
'width' : 300,
'height' : 200,
'type' : 'iframe',
'autoScale' : false,
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'speedIn' : 600,
'speedOut' : 200,
'showCloseButton' : false,
'titleShow' : false
});
});
</script>
<a class="iframe" id="iframe" href="test.html>iframe</a>
I am currently facing issues with setting the height and width of the window. Please refer to the image attached below for my current output. Any suggestions on how to properly set the height and width?