Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7506813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:21:25+00:00 2026-05-29T22:21:25+00:00

I want to add dynamic css in my html page, I made a function

  • 0

I want to add dynamic css in my html page, I made a function using navigator function if the browser is mozilla then function will add mozilla css otherwise it should add IE css but somehow I am unable to make it working.

<head>
<script type="text/javascript">   
var cs;   
function nav() {        
var txt= navigator.appCodeName;             
if(txt=='mozilla') {
cs= mozilla;
}
else{
cs= ie;
}}
</script>     
</head>    
<body onload="nav ()">
<p id="cab"></p>    
</body>
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T22:21:27+00:00Added an answer on May 29, 2026 at 10:21 pm

    You really should use conditional IE comments for this, not JavaScript. This is for many reasons including:

    • The CSS will work when JavaScript is disabled or not available.
    • Your JavaScript handles Mozilla, but what about other browsers like Chrome and Opera?
    • You tend to need separate CSS to “fix” the page layout for IE (especially older versions…), but the rest of the major browsers should all cope with standard CSS rules.

    The JavaScript you’ve written has a couple of issues:

    • The ‘mozilla’ string comparison will never match because browsers return it with a capital M: ‘Mozilla’.
    • The ‘+cs+’ in the link tag won’t ever do anything because the browser won’t treat it as javascript.

    If you really want to do it with JavaScript you could remove the link tag from your page’s head section and try a function something like this (not tested):

    function setCss() {
        var cssFileName;
    
        if(navigator.appCodeName.toLowerCase() == 'mozilla') {
            cssFileName = 'mozilla-style.css';
        }
        else {
            cssFileName = 'ie-style.css';
        }
    
        // Create the element
        var cssFileTag = document.createElement("link")
        cssFileTag.setAttribute("rel", "stylesheet")
        cssFileTag.setAttribute("type", "text/css")
        cssFileTag.setAttribute("href", cssFileName)
    
        // Add it to the head section
        document.getElementsByTagName("head")[0].appendChild(cssFileTag)
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add Html controls in runtime using Microsoft MVC2 RC2 to create
In this page there's a way to dynamic add html (textbox,input button and radio
i have a problem i want to add Colomn ( Dynamic using C #)
How do I add dynamic libraries in iphone xcode? I want to add the
I want to add a few dynamic rows right in the middle of a
I want to add dynamic columns in a mysql table but I don't know
I want to add a dynamic image in the UITableView's tableHeaderView part. For that
TLDR I want to add some dynamic content into an Ext-JS window / popup.
I have the following dynamic sql statement where I want to add @StartRowIndex +
i have simple JAXWS client with dynamic url. i want to add timeout .

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.