snippet library logo
in category
Javascript / Browser / Browser Dependent Style Sheets
Snippet details
ID: 102
Viewed: 1192
Added: 2002-03-25
Version:
View Demo

User Rated at:
Rate This:
Snippets in this catagory         
Show Printable Version
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


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Subject:

Reviewed By:

Write a review:





Terms of Conditions
Powered By
Avian Hosting
© 2005 snippetlibrary.com All Rights Reserved.