For some new stuff that I am writing I have decided to give up on trying to support Netscape 4.x
if (navigator.appVersion.indexOf("4." != -1 &&
navigator.appName.indexOf("Netscape" != -1) {
alert("To use this site you must upgrade your browser"
window.self.location='open("upgrade.htm"'
} else {
.....
}
In "upgrade.htm", I was going to give a link to MSIE & Netscape, however, do users of AOL need to upgrade to a newer version of AOL or can they just update their browser?
Any other ideas or comments would be appreciated.
if (navigator.appVersion.indexOf("4." != -1 &&
navigator.appName.indexOf("Netscape" != -1) {
alert("To use this site you must upgrade your browser"
window.self.location='open("upgrade.htm"'
} else {
.....
}
In "upgrade.htm", I was going to give a link to MSIE & Netscape, however, do users of AOL need to upgrade to a newer version of AOL or can they just update their browser?
Any other ideas or comments would be appreciated.