JavaScript – Change Text in HTML Element to Bold

To change text in HTML Element to bold using JavaScript, get reference to this HTML Element, and assign element.style.fontWeight property with value of "bold".

In the following example, we will make the text bold in HTML Element with id "myElement", in JavaScript, using element.style.fontWeight property.

example.html

ADVERTISEMENT

Conclusion

In this JavaScript Tutorial, we learned how to change text in a HTML Element to bold using JavaScript.