From 75b01b2e84ac2271ba5fe23291655c5f748eb42d Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Thu, 13 May 1999 09:45:20 +0000 Subject: Don't do javascript on browsers older than 4.06; it seems not to be working. --- query.cgi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/query.cgi b/query.cgi index ac62a0db5..144449ae8 100755 --- a/query.cgi +++ b/query.cgi @@ -243,6 +243,13 @@ function selectProduct(f) { // Apparently, IE4 chokes on the below, so do nothing if running that. var agt=navigator.userAgent.toLowerCase(); if ((agt.indexOf("msie") != -1)) return; + // Netscape 4.04 and 4.05 also choke with an "undefined" + // error. if someone can figure out how to "define" the + // whatever, we'll remove this hack. in the mean time, we'll + // assume that v4.00-4.03 also die, so we'll disable the neat + // javascript stuff for Netscape 4.05 and earlier. + var agtver = parseFloat(navigator.appVersion); + if (agtver <= 4.05 ) return; var cnt = 0; var i; -- cgit v1.2.3-24-g4f1b