Hi,
I understand that the javascript in IE5 doesn't support the PUSH() method of arrays, and have been researching and discovered that you need the add on:
if (typeof Array.prototype.push == "undefined") {
Array.prototype.push = function(str) {
this[this.length] = str;
}
}
however...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.