Error message:
Object doesn't support this property or method.
And solution is Add these Code before you use the indexOf() function before you use that in IE8:
if (!Array.prototype.indexOf){Example code for my case:
Array.prototype.indexOf = function(elt /*, from*/){
var len = this.length >>> 0;
var from = Number(arguments[1]) || 0;
from = (from < 0)
? Math.ceil(from)
: Math.floor(from);
if (from < 0)
from += len;
for (; from < len; from++){
if (from in this &&
this[from] === elt)
return from;
}
return -1;
};
}
Reference:
http://stackoverflow.com/questions/3629183/why-doesnt-indexof-work-on-an-array-ie8
No comments :
Post a Comment