I have an iframe with pdf on my page and am trying to disable the scrolling of the main window when scrolling an iframe. Here is the code for it:
$('iframe') .mouseover(function () { var html = $('html'); html.data('previous-overflow', html.css('overflow')); html.css('overflow', 'hidden'); html.css('margin-right', '17px'); }) .mouseout(function () {
But such css changes cause the iframe content to flicker (using Chrome 13). How can I fix this blinking?
source share