0
How to change inner html
How do you change inner html with JavaScript?
3 Answers
+ 3
Using this syntax
document.getElementById(id).innerHTML = new HTML
Examples of such can be found in many peoples codes.
Hope this helps!
+ 1
thank you!
How do you change inner html with JavaScript?