$('document).ready() issue on IE with 1.2

$('document).ready() issue on IE with 1.2


Hi everyone,
since upgrading to 1.2, a strange quirk happens on IE ( 6 and 7 ).
The document ready event doesn't seem to always work: on some reloads,
without errors of sorts, it wont't fire.
This looks to be triggered by an external banner script... I'm trying
to build a clean test case right now.
The bug looks "fixed" if I revert bindReady from the current:
if ( this.readyState != "complete" ) return;
to the old:
if ( document.readyState != "complete" ) return;
I can't find clues in the source, but I suppose it was done for some
reason... anyone got ideas about this?
FF 2.x, Opera and Safari work perfectly either way.