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.

Possible Duplicate:
Inserting an element
How to do insert After() in JavaScript without using a library?

I have this little bit of javascript in a project which adds a chat window after the body of the page, I'd like to change it so that it adds the chat window AFTER my specified div "myPublisherDiv". I think this is pretty simple, any ideas? Thanks in advance!

var div = document.createElement('div');
    div.setAttribute('id', 'stream' + streams[i].streamId);
    document.body.appendChild(div);
share|improve this question
Mmh, I just noticed that your title and the text of your question differ... if you only want to append, it seems you just need to learn about getElementById: developer.mozilla.org/en/DOM/document.getElementById – Felix Kling Apr 23 '12 at 21:40
FYI, div.setAttribute('id', 'stream' + streams[i].streamId); can be written div.id = 'stream' + streams[i].streamId;; id is a reflected property on elements and is universally supported. – T.J. Crowder Apr 23 '12 at 21:44

marked as duplicate by Felix Kling, Bergi, Dagg Nabbit, T.J. Crowder, Gaby aka G. Petrioli Apr 23 '12 at 21:48

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

Put an id to your div

<div id="myDiv">..</div>

And then append things to it with the appendChild:

document.getElementById("myDiv").appendChild(div);
share|improve this answer
That actually replaces just the content. – Amberlamps Apr 23 '12 at 21:42
@Amberlamps oops, I mean += – ajax333221 Apr 23 '12 at 21:43
1  
Using += with innerHTML is an anti-pattern which causes the browser to do a lot more work than required, and wipes out event handlers on the content within. Use appendChild. – T.J. Crowder Apr 23 '12 at 21:45
@T.J.Crowder thanks for the suggestion, I didn't know it was that bad – ajax333221 Apr 23 '12 at 21:48

This should do it..

var div = document.createElement('div');
div.setAttribute('id', 'stream' + streams[i].streamId);

var target = document.getElementById('myPublisherDiv');

target.parentNode.insertBefore(div, target.nextSibling);

ripped from How to do insert After() in JavaScript without using a library?

share|improve this answer
3  
Shouldn't you vote to close it as a duplicate then? ;) – Felix Kling Apr 23 '12 at 21:43
1  
just did.. <excuse> i did update the code to match the OP's code, doesn't that count for something ? :p </excuse> – Gaby aka G. Petrioli Apr 23 '12 at 21:50

This is a bit trickier. insertBefore is simple, for inserting after a node I wrote a litte helper function:

function insertAfter(newElement, referenceElement) {
    referenceElement.parentNode.insertBefore(newElement, referenceElement.nextSibling);
}

var div = document.createElement('div');
...
insertAfter(document.getElementById("myPublisherDiv"), div);

But see also http://stackoverflow.com/a/1559632/1048572

share|improve this answer
1  
Rather use nextSibling instead of nextNode – Amberlamps Apr 23 '12 at 21:44
Oops, already edited. Thanks anyway :-) – Bergi Apr 23 '12 at 21:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.