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!