I've been using jQuery and YUI side-by-side with no issues until recently. Occasionally, inside of a callback for, say, a YUI button, $ will be shadowed by some other function (click for big version):

and for the life of me, I cannot figure out why this is happening. Yes, I know I could be safe and use jQuery or window.$ everywhere instead of just $, but that's just a workaround and not an actual fix.
At runtime, how can I find where this $ impostor is coming from? - e.g. find where it's declared, and why it's in my bleedin' scope.
Edit
It turns out that this behavior is easily reproduced (at least in Chrome and Firefox 4) right here on Stack Overflow, since SO uses jQuery (again, click for full size):
I can only infer that $ as
function () {
return document.getElementById.apply(document, arguments)
}
must be from the console itself!
Edit 2
Found it. with strikes again.

Last edit, I promise
Found the bug in Chromium for this: http://code.google.com/p/chromium/issues/detail?id=70969



return document.getElementById.apply(document, arguments)– Šime Vidas Feb 12 '11 at 0:56