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
Muneeb Akram -
Sanjar Rashidov -
Sanjar Rashidov -
CodeItBro -
Top comments (1)
I think you're looking for
document.querySelector
ordocument.getElementById
etcdeveloper.mozilla.org/en-US/docs/W...
developer.mozilla.org/en-US/docs/W...