I try to listen from inside of iframe to changes of iframe width/height with:
$(window).resize(function(){ alert(\'1 on inside iframe\'); });
You need to call the resize() handler from the parent document on the iframe:
resize()
parent
iframe
$('iframe').resize(function() {} );