Skip to content
FLAVIO COPES
flaviocopes.com
2026

How to change a DOM node value

Given a DOM element, how do you change its value?

~~~

Change the value of the innerText property:

element.innerText = 'x'

To lookup the element, combine it with the Selectors API:

document.querySelector('#today .total')
~~~

Related posts about platform: