次のコードがあります。
// Creates a timer to check for elements popping into the dom
timer = setInterval(function ()
{
for (p in pixelTypes)
{
checkElems(pixelTypes[p]);
}
}, 10);
// Add Document finished callback.
$(document).ready(function ()
{
// Document is loaded, so stop trying to find new pixels
clearInterval(timer);
});
Firefox では問題なく動作しますが、IE6 では $(document).ready 行で「Object Expected」エラーが発生します。
IE6がそれを認識しない原因がわかりません.jqueryはこの時点で完全にロードされています.
これは既知の問題ですか?