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 have a function that creates a script element and dynamically populates the source URL. The source URL for the script element returns an advertisement (image and text) wrapped in a document.write();.

When I hard code the script element, it works fine. When I use the dynamically created one, which is exactly the same, the document.write(); doesn't execute, but it is there.

I'm just wondering if anyone has a clue what might be causing this.

Thanks in advance.

share|improve this question

1 Answer

Using document.write(); dynamically will erase all content in the document and replace it with the text inside the parameters. It's not recommended you use it as there are better ways of inserting text into the DOM. Namely,.appendChild(); or at least .innerHTML

share|improve this answer

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.