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:
var div = document.getElementById('divID'); div.innerHTML += 'Extra stuff';