I was working with the developer tools of google chrome on a page without jQuery (or any other library that uses the $
sign as a shortcut).
When I inspected $
by the console (by just typing it in and hitting enter), i got this:
$
function () { [native code] }
So, chrome has some native function that can be referenced by $
. Only chrome seems to have this one and i cannot access it via window['$']
nor via document['$']
or this['$']
.
I was not able to find out what this function is. Do you know what it does and maybe have some background information on this? Thanks in advance!
This has changed yet again, even since just last year.
The devtools console provides
$
as an alias todocument.querySelector
, along with many other things; here's an excerpted list:...and a bunch of others.
Note how it calls
$
an alias ofdocument.querySelector
, but says$$
is "equivalent" to callingdocument.querySelectorAll
. Neither seems to be literally true;$ === document.querySelector
isfalse
, and$$
returns an array, not aNodeList
.