Answers for "add text html 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

document.getElementById("p").textContent += " this has just been added";
Posted by: Guest on May-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language