I have an iframe with "scrolling="no"" and a button that sets iframe attribute to scrolling="yes", when it's needed.
$("#button3").click(function(){
$( "#iframe_id" ).attr( "scrolling", "yes" );});
But the scroll bar doesn't appear, when i press the button3, only after i refresh the iframe. How to force the srcoll bar appear instantly?
How it works now: http://jsfiddle.net/77van/k8GhZ/1/