the case:
i try to listen from inside of iframe to change of iframe width/height by:
1 fail:
$(window).resize(function(){
alert('1 on inside iframe');
});
2 fail:
$(window.parent).find('iframe').resize(function(){
alert('2 on inside iframe');
});
but nothing happen when iframe size changed. (I need cross-browser solution:ie7+chrome+firefox+safari) Thanks,