У меня есть следующий код:
// 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 я получаю сообщение об ошибке "Object Expected" в строке $(document).ready.
Я не могу понять, что может заставить IE6 не распознать его, jquery полностью загружен этой точкой.
Это известная проблема?