I have a link
<a class="modal" rel="{handler: 'iframe', size: {x: 500, y: 400}}" href="http://localhost/site/index.php">Site</a>
Which opens its href in lightbox. I want to remove scrolls from an iframe and I found this '"scorlling=no"'.I could not find a way to add this property in iframe. I tried this
jQuery(document).ready(function($) {
$(".modal").click(function() {
$("#sbox-content iframe").attr("scrolling","no")
});
});
But it's not working.
Is this possible or what is the best way to do this?
Thanks.