>How did you find out what JavaScript you could use accross so many
>different
>browsers?
>this is something we really want to find, but have had no luck so far

If a browser doesn't support javascript, the javascript code
will be ignored if you use this trick:

<SCRIPT>
<!-- hide from old browsers
    Your javascript-code goes here
// -->
</SCRIPT>

I downloaded the javascript reference manual from
http://developer.netscape.com and I checked for every
function since which Mozilla-version the function works.
In my code I have a lot of lines looking like this:

if (navigator.userAgent.indexOf("Mozilla/4") == -1) return;

If 'Mozilla' doesn't appear in the userAgent-object
(or if it isn't the right Mozilla-version)
the function returns immediately.


______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to