Answers for "add text html through javascript"

C#
3

how add text to element in javascript

var paragraph = document.getElementById("p");

paragraph.textContent += "This just got added";
Posted by: Guest on May-19-2021
0

how add text to element in javascript

var p = document.getElementById("p")
p.innerText = p.innerText+" And this is addon."
Posted by: Guest on May-19-2021

Code answers related to "add text html through javascript"

C# Answers by Framework

Browse Popular Code Answers by Language