Simple jQuery selector only selects first element in Chrome..?
If jQuery isn’t present on the webpage, and of course no other code assigns something to $, Chrome’s JS console assigns $ a shortcut to document.querySelector(). You can achieve what you want with $$(), which is assigned by the console a shortcut to document.querySelectorAll(). To know if the page contains jQuery, you can execute jQuery … Read more