top | item 47140906

(no title)

iLoveOncall | 6 days ago

But that's what setHTML isn't at all a replacement for innerHTML.

You still need innerHTML when you want to inject HTML tags in the page, and you could already use innerText when you didn't want to.

Having something in between is seriously useless.

discuss

order

chrisldgk|5 days ago

It’s simple, you use innerHTML if you know for sure where the input comes from and if it’s safe (for example when you define it as a hard coded string in your own code). You use setHTML when you need to render HTML that is potentially unsafe (for example forum posts or IM messages). Honest question, which part of that isn’t clear?

Dylan16807|6 days ago

> You still need innerHTML when you want to inject HTML tags in the page

What makes you say this?

joquarky|6 days ago

> need innerHTML

parent.appendChild(document.createElement(tag))

iLoveOncall|6 days ago

How is adding an element to the parent the same as replacing all the content of the element? You guys are exhausting. Think a bit before spouting nonsense?