DEV Community

Discussion on: .innerHTML Cross-site Scripting

Collapse
 
chandlerbaskins profile image
Chandler Baskins

Would textContent be another alternative besides innerHtml?

Collapse
 
caffiendkitten profile image
DaNeil C

Oh yeah! it's a much better/safer alternative as textContent cannot accept HTML tags AND text. textContent only works with the text inside of a tag and wont allow tag code to be passed into it along with the text.