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?
You can get the iframe document by doing this:
document.getElementById(iframeId).contentDocument
That is if you own the page loaded in the iframe.