Answers for "javascript add text"

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
1

js add more text to element

document.getElementById("p").textContent += " This is the text from javascript.";

<p id ="p">This is the text from HTML.</p>
Posted by: Guest on June-18-2020

Code answers related to "javascript add text"

C# Answers by Framework

Browse Popular Code Answers by Language