How to append text to a “?

Try this:

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

div.innerHTML += 'Extra stuff';

Leave a Comment