Answers for "how to add text in a class in js"

31

addclass javascript

var someElement= document.getElementById("myElement");
    someElement.className += " newclass";//add "newclass" to element (space in front is important)
Posted by: Guest on July-24-2019
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"

Browse Popular Code Answers by Language