JavaScript – Change the Border Width of HTML Element

To change the border width of a HTML Element using JavaScript, get reference to the element, and assign required width value to the element.style.borderWidth property.

In the following example, we will change the border width of HTML Element with id "myElement" to "5px", in JavaScript, using element.style.borderWidth property.

example.html

ADVERTISEMENT

Conclusion

In this JavaScript Tutorial, we learned how to change the border width of a HTML Element using JavaScript.