javascript innerHTML adding instead of replacing javascript innerHTML adding instead of replacing ajax ajax

javascript innerHTML adding instead of replacing


<div id="whatever">hello one</div><script>document.getElementById("whatever").innerHTML += " hello two";</script>


Notice that using element.innerHTML += 'content' would empty inputs and textareas to their default, blank state, unclick checkboxes, as well as removing any events attached to those elements (such as onclick, on hover etc.) because the whole innerHTML would be reinterpreted by the browser, which means .innerHTML is emptied and filled again from scratch with the combined content.

If you need to keep the state, you'd need to create a new element (a <span> for instance) and append it to the current element, as in:

let newElement = 'span'newElement.innerHTML = 'new text'document.getElementById('oldElement').appendChild(newElement)


document.getElementById("whatEverId").innerHTML =  document.getElementById("whatEverId").innerHTML +  "hello two" + document.getElementById("whatEverId").innerHTM ;