Looking to incorporate a small JavaScript code directly into The Twenty Sixteen theme in WordPress.
This HTML Code needs to be modified on the Page:
<p class="site-description">Example Text</p>
The goal is to change a classname:
document.getElementsByClassName("site-description").className ="Site-example-class";
However, despite using FireBug on the page, the class site-description
remains unchanged.
Additionally, attempting to select the text of the headline with this code:
document.getElementsByClassName("site-description").innerHTML ="Hello There";
has proven to be unsuccessful.