One of the best features of jQuery is the use of CSS selectors to reference elements, EG: $('#my-id').
How can I use selectors when writing vanilla JavaScript?
One of the best features of jQuery is the use of CSS selectors to reference elements, EG: $('#my-id').
How can I use selectors when writing vanilla JavaScript?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)
I think you're looking for
document.querySelectorordocument.getElementByIdetcdeveloper.mozilla.org/en-US/docs/W...
developer.mozilla.org/en-US/docs/W...