Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. montego237

    Push Method workaround for lack of support in IE5

    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...

Part and Inventory Search

Back
Top