Hi,
I have the below HTML
<div class= "a">
<iframe src="http://abc.html" width="100%" height="100%"> </iframe>
</div>
In IE I'm seeing a scrollbar for the iframe.
Can we add an attribute scrolling=no dynamically using jQuery.
I tried the below
$("iframe:contains('src')").attr('scrolling', 'no');
$ (".a").setAttribute("scrolling", "no");
$('iframe').attr("scrolling", no);
Thanks,
Naren.