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?
|
|
try this:
|
|||||
|
|
Using appendChild:
Using innerHTML:
|
||||
|
|
|
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):
|
|||||||||||
|
|
If you are using jQuery you can use $('#mydiv').append('html content') and it will keep the existing content. |
|||
|
|
