I try to listen from inside of iframe to changes of iframe width/height with:
$(window).resize(function(){
alert('1 on inside iframe');
});
or:
$(window.parent).find('iframe').resize(function(){
alert('2 on inside iframe');
});
but nothing happens when iframe size changes. (I need a cross-browser solution: IE7, Chrome, Firefox, Safari.)
I try to listen from inside of iframe to changes of iframe width/height with:
$(window).resize(function(){
alert('1 on inside iframe');
});
or:
$(window.parent).find('iframe').resize(function(){
alert('2 on inside iframe');
});
but nothing happens when iframe size changes. (I need a cross-browser solution: IE7, Chrome, Firefox, Safari.)
Share Improve this question edited Sep 10, 2021 at 7:44 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Feb 28, 2012 at 14:55 BenBen 25.8k35 gold badges113 silver badges166 bronze badges2 Answers
Reset to default 3$(body).resize(function(){
alert('on inside iframe');
});
Edit :
in html
<body onresize="myFunction()">
You need to call the resize()
handler from the parent
document on the iframe
:
$('iframe').resize(function() {} );