You can add class attribute with certain class name for this tag:
`<meter class="over-the-range" id="disk_c" value="2" min="0" max="10">2 out of 10</meter>`
Then you should use elem.className
or elem.classList
methods for changing class attribute like this:
document.body.classList.add('your-class');