Kadal
Kadal

Reputation: 11

How do I show the width of an element

I'm trying to make a function that shows the width of a class that has the name of progress-bar (in this case below, 70.7125%)

Any ideas?

Class - progress-bar

Upvotes: 0

Views: 55

Answers (1)

Tal
Tal

Reputation: 46

document.querySelector('.progress-bar').style.width

Upvotes: 1

Related Questions