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'm using ajax to append data to DIV element, where I fill the DIV from JavaScript, how can I append new data to the DIV without losing the previous data found in DIV?

share|improve this question
$(div).append(data); – jimy Apr 15 '11 at 13:55
Is this the "data" attribute, or the innerHTML you're speaking about? – Diodeus Apr 15 '11 at 13:55
1  
@jimy thats jquery, no need to use that for such a trivial thing – Neal Apr 15 '11 at 13:55
@Diodeus it's innerHTML – Adham Apr 15 '11 at 13:58
3  
@Alnitak, jQuery is not the only ajax solution – Neal Apr 15 '11 at 14:24
show 3 more comments

4 Answers

up vote 16 down vote accepted

try this:

var div = document.getElementById('divID');

div.innerHTML = div.innerHTML + 'Extra stuff';
share|improve this answer
2  
document.getElementById('divID'); – Aidan Ewen Dec 3 '12 at 13:16

Using appendChild:

var theDiv = document.getElementById("<ID_OF_THE_DIV>");
var content = document.createTextNode("<YOUR_CONTENT>");
theDiv.appendChild(content);

Using innerHTML:
This approach will remove all the listeners to the existing elements as mentioned by @BiAiB. So use caution if you are planning to use this version.

var theDiv = document.getElementById("<ID_OF_THE_DIV>");
theDiv.innerHTML += "<YOUR_CONTENT>"; 
share|improve this answer

beware of innerHTML, you sort of 'lose' something when you use it:

theDiv.innerHTML += 'content', is equivalent to theDiv.innerHTML = theDiv.innerHTML + 'content'

which will destroy all nodes inside your div and recreate new ones. All references and listeners to elements inside it will be lost.

If you need to keep them (when you have attached a click handler, for example), you have to append the new contents with the DOM functions(appendChild,insertAfter,insertBefore):

var newNode = document.createElement('div');
newNode.innerHTML = data;
theDiv.appendChild( newNode )
share|improve this answer
yes but this will cause there to be an extra div inside the parent div which is not needed and might mess up some css styles – Neal Apr 15 '11 at 14:11
@Neal this is just a example way to use appendChild. the point is not here. – BiAiB Apr 15 '11 at 14:16
The correct way to do the appendChild was done by @Cybernate – Neal Apr 15 '11 at 14:17
@Neal no it's not. It's neither correct or incorrect. It just depends on what the OP needs to append: text, html code or something else. – BiAiB Apr 15 '11 at 14:23
@Neal this is a perfectly good way of appending the data, and is more versatile than document.createTextNode(). – Alnitak Apr 15 '11 at 14:27

If you are using jQuery you can use $('#mydiv').append('html content') and it will keep the existing content.

http://api.jquery.com/append/

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.