Closed GoogleCodeExporter closed 8 years ago
Seems like IE7 and IE8 doesn't support Array.indexOf.
Possible impl:
http://api.jquery.com/jQuery.inArray/ or extend Array.prototype, eg.
if ( !Array.prototype.indexOf ) {
Array.prototype.indexOf = function(obj, start) {
for ( var i = (start || 0), j = this.length; i < j; i++ ) {
if ( this[i] === obj ) { return i; }
}
return -1;
}
}
Original comment by johansalllarsson
on 5 Sep 2011 at 3:18
Original comment by johansalllarsson
on 5 Sep 2011 at 3:19
This issue is fixed in the trunk (minified version is still affected)
Original comment by johansalllarsson
on 5 Sep 2011 at 3:30
Thanks. That fixes the problem for me.
Original comment by rdthr...@gmail.com
on 5 Sep 2011 at 5:36
Perfect Thanks a lot:)
Original comment by dangel...@intuitiv-technology.bg
on 20 May 2013 at 6:29
Original issue reported on code.google.com by
rdthr...@gmail.com
on 5 Sep 2011 at 1:40Attachments: