I have two forms on an HTML5 page. Each form has a name and an id. The second form has an h1 element, which also has a name and an id. How do I change the text of this h1 elemen
You may try the following:
document.getElementById("your_h1_id").innerHTML = "your new text here"