Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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,

share|improve this question

3 Answers

You need to call the resize() handler from the parent document on the iframe:

$('iframe').resize(function() {} );
share|improve this answer
$(body).resize(function(){
    alert('on inside iframe');
});

Edit :

in html

<element onresize="SomeJavaScriptCode">

onresize is Supported by the Following HTML Tags

<a>, <address>, <b>, <big>, <blockquote>, <body>, <button>, <cite>, <code>, <dd>, <dfn>, <div>, <dl>, <dt>, <em>, <fieldset>, <form>, <frame>, <h1> to <h6>, <hr>, <i>, <img>, <input>, <kbd>, <label>, <legend>, <li>, <object>, <ol>, <p>, <pre>, <samp>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <table>, <textarea>, <tt>, <ul>, <var>
share|improve this answer
In Firefox, Opera, Google Chrome and Safari, the onresize event is fired only when the size of the browser window is changed.help.dottoro.com/ljorlllt.php – Yosef Feb 28 '12 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.