я так понимаю
if (!Array.prototype.hasOwnProperty("indexOf")) { // для IE 8 и ниже
Array.prototype.indexOf = function (value) {
var i;
for (i=0; i<this.length; i++) { if (this[i] == value) { return i; } }
return -1;
}
}
это нужно один раз вызвать где-нибудь в document.redy функции, что бы в IE 8 и ниже у массивов появилось indexOf ?