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.

I want change class property on an iframe I use .contents() which is perfectly working. But I want to do this using JavaScript. My code is:

var $c = $('#myframe').contents();              
$c.find('.inner-wp').css('margin','0')
share|improve this question
2  
okay, what is the problem? – undefined Jul 23 '12 at 16:39

1 Answer

up vote 4 down vote accepted

.contents() on a frame returns the document within the frame. So, you're looking for:

var frame = document.getElementById('myframe');
var c = frame.contentDocument || frame.contentWindow.document;

Note: This won't work if the frame is from a different origin.
The remaining part of the code:

var inner_wp = c.getElementsByClassName('inner-wp');
for (var i=0; i<inner_wp.length; i++) {
    inner_wp[i].style.margin = '0';
}
share|improve this answer
Thanks but getElementsByClassName does not work in ie7 – amit Jul 23 '12 at 17:20
well u answer my question thanks for that – amit Jul 23 '12 at 17:20
@amit See stackoverflow.com/questions/1818865/…. – Rob W Jul 23 '12 at 17:35

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.