I'm sending an html file to an iframe using the following code:
<a href="faculty-subpage.html?iframe">Bio</a>
I can set certain properties of the iframe via jquery as I have here:
$(document).ready(function() {
$("div.faculty_stub h5 a").fancybox({
'frameWidth': 550,
'frameHeight': 600,
'overlayOpacity': 0.8,
'easingIn' : 'easeInCubic', 'easingOut' : 'easeOutCubic'
});
});
When I look at the list of "Available Options" on the
fancybox.net
site (or in the list of fancybox.defaults at the bottom of the
jquery.fancybox-1.2.1.js file) there are no options that control the
scroll bars of an iframe.
Is there a way to set the fancybox iframe to 'scrolling="no"'?
Thanks.