Most Useful trick to Easily Access Webpage Elements in Chrome Dev Tools
Many times when we’re writing JavaScript code, we want to quickly test if some element on the webpage is present or not or count the list of elements displayed.
To count the number of jobs displayed:
document.querySelectorAll('.job-item').length
To ...
blog.yogeshchavan.dev2 min read
Shawn Crigger
I write code, mostly PHP/JS, talk to APIs and love dogs
Can you do this without a framework like jQuery included on the page is this built into the console or is it just using the included frameworks on the page? I'm just curious I use the console all the time but normally jQuery is included on the page.