I would like to implement a small javascript code in The Twenty sixteen theme in WordPress itself.
This is the HTML Code I want to change on the Page:
<p class="site-description">Example Text</p>
I want to change a classname:
document.getElementsByClassName("site-description").className ="Site-example-class";
But The class site-description
is not changing after using FireBug on the page.
Also when I want to select the text of the headline with this:
document.getElementsByClassName("site-description").innerHTML ="Hello There";
it is not working.