Javascript / Browser / Browser Dependent Style Sheets
This will load the correct style sheet for the correct browser. NS4.xx will only use the netscape style sheet, but IE and NS6+ will use the explorer style sheet. must go in the head tag.
General Details
Snippet uploaded by: snippet
Email : webmaster@snippetlibrary.com
Snippet By: unknown
<!---Head--->
<script language="JavaScript">
if((navigator.appName=='Netscape') && (parseInt(navigator.appVersion)==4)) document.write("<link rel="stylesheet" type="text/css" href="http://www.yoursite.com/netscape.css">");
else document.write("<link rel="stylesheet" type="text/css" href="http://www.yoursite.com/explorer.css">");
</script>
<!---Body--->
none
No Reviews to show
