[jQuery] Modify iframe with jquery

[jQuery] Modify iframe with jquery


I have an iframe in a page that scrolls on initial load, but after
clicking a link and loading a different page I have to remove the
scroll(scrolling=no).
When the 2nd page loads I set the attr on the the iframe to
scrolling=no.
$('#iframe').attr('scrolling','no');
But, This does not seem to work. Does anyone know? Is the iframe more
of a static object after initial creation and load? Can it's parameters
(except for src) not be changed?
Thanks