I have an iframe embedded on my webpage and I\'d like to edit certain parts of it using javascript. Is this possible and how would I do it?
According to the HTML DOM spec (level 2), you can reach the child DOM by using the .contentDocument property of the iframe's DOM node.
.contentDocument
But, of course, no browser lets you do that across domains anymore...