Published
- 1 min read
JS get number of classes in html
The solution for this is noted below
JS get number of classes in html
Solution
VanillaJS
document.querySelectorAll('#main-div .specific-class').length
jQuery
$('#main-div .specific-class').length
Try other methods by searching on the site. That is if this doesn’t work