Answer the question
In order to leave comments, you need to log in
Script to track the number of certain tags on a page?
Suppose there is a tag aside
, you need to track their number and display this number on the page
Answer the question
In order to leave comments, you need to log in
Well, for example, in the forehead you can:
const resultDiv = document.createElement('div')
document.body.appendChild(resultDiv);
setInterval(() => {
const count = document.querySelectorAll('div').length;
resultDiv.innerText = count;
}, 500)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question