Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to wrap an iFrame in a div wihtout the iFrame reloading the content. Is there a way to suppress the refresh or another way to wrap the content?

share|improve this question
Well, what have you tried so far? – Spiny Norman Dec 9 '10 at 10:58
$('iframe[src^="http://www.site.com"]').wrap('<div class="test" />'); – Scoop Dec 9 '10 at 11:01
1  
+1 very interesting, looks like a misbehaviour, only MSIE seems to do it like expected – Dr.Molle Dec 9 '10 at 12:15
any leads or workarounds to get it to not refresh? – Scoop Dec 15 '10 at 21:39
1  
This really needs to be solved - I'm having the same issue :) My jQuery Tabs are causing an iframe to refresh every time you switch tabs due to this glitch. – JustLoren Apr 5 '11 at 18:50

1 Answer

up vote 2 down vote accepted

wrap does a wrapAll function, in which jQuery clones the <iframe/>, and this causes the refresh in Firefox.

update: I think it is a bug with the iframe handling code in the browsers, because the following code is not working either:

var
  $i = $('iframe[src^="http://www.site.com"]'),
  $d = $('<div class="test"/>');

$d.append($i);
share|improve this answer
Tested this, the behaviour is related to DOM-methods like appendChild or replaceChild, not a jquery-issue. – Dr.Molle Dec 9 '10 at 12:53
this seems to send my js interpreter into a loop... did this work for you? – Scoop Dec 9 '10 at 13:49
you're right. it is not working with my example either. it does not cause loop but reloads the iframe. – KARASZI István Dec 9 '10 at 14:18
any ideas or work arounds to get it to not refresh? Also, it only has to work in Firefox. – Scoop Dec 15 '10 at 21:40

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.