There is a piece of code. Inside a certain function.
_ondblclick = 'some_function();';
ondblclick = 'some_function();';
alert(_ondblclick);
alert(ondblclick);
In FF3, both messages are the same and expected.
Chrome 6 — second message gives null.
Who knows why?