I would like to set a value of a <label>, like so:
<label for="idname">Value here...</label>
with Javascript. I have already done this, for the for attribute:
element.setAttribute("for", "idname");
is there something like element.setValue() that I can use to set the value of the label? Thanks!