I have an iframe that hosts webpages from various websites. In the onload handler for the iframe I resize it to fit the contents using JQUERY
height = iframe.find('body').attr('scrollHeight') + 100
This works fine for most websites. However there is a website that has a window.onresize event which reloads the page. So it gets in an endless loop reloading the page where it is resized and therefore reloads the page.
How can I kill the resize event? I have tried all the following in my onload handler but none seem to work:
$('#webpage').resize(function() { alert("resizing"); return false});
iframe.resize(function() { alert("resizing"); return false});
window.onresize=null
window.onresize=function() { alert("resizing"); return false};
if (document.layers). – bobince Dec 22 '10 at 21:30