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 created a document in Javascript using

newdoc = document.implementation.createHTMLDocument('Whatever')

and then I used

newdoc.innerHTML = document.innerHTML

to give him some code. The problem is that the DOM for newdoc doesn't seem to be fully formed and executing a function such as

newdoc.getElementsByClassName('somename')

on it yields undefined results. Do you know a solution for this problem?

share|improve this question

1 Answer

document does not have innerHTML property.

You should use it on the body.

newdoc.body.innerHTML = document.body.innerHTML;
share|improve this answer
How could I forget about it! I should RTFM the next time. Thanks. – Fabrizio Serra Oct 6 '12 at 7:09

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.