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 6893145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:37:23+00:00 2026-05-27T06:37:23+00:00

I am trying to create a jquery treeview plugin for my current project. Plugin

  • 0

I am trying to create a jquery treeview plugin for my current project. Plugin can run well with firefox at this moment; however, when running with IE, all the css style cannot be applied. For example, i define in the css file #button {…}, then when i generate the control with id=”button”, it cannot retrieve the style from the css. How can i solve this issue ?

This is some of my codes

In the js file

    createControls = function() {

    nDiv = document.createElement("div");       
    nTxt = document.createElement("input");
    nTxt.setAttribute('id','txtAdVal');
    nTxt.setAttribute('type','text');
    nTxt.setAttribute('style' , "width:300px");

    nBut = document.createElement("button");
    nBut.innerHTML = "Show Active Directory Tree";
    nBut.setAttribute("class", "button");

    nDiv.appendChild(nTxt);
    nDiv.appendChild(nBut);

    $(nBut).bind('click', function(event) {
        createTree();
    });

    return nDiv;
};

and in the css file

.button{...}
  • 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-27T06:37:23+00:00Added an answer on May 27, 2026 at 6:37 am

    What about changing:

    nBut.setAttribute("class", "button");
    

    To:

    nBut.className = "button";
    

    Since you are already including jQuery you can also make sure you are doing everything cross-platform:

    nBut = $("<button class='button'>Show Active Directory Tree</button>");
    nDiv.append(nBut);
    

    Note that this requires nDiv to be a jQuery object (nDiv = $('div')).

    I found this answer on stackoverflow: How can I reliably set the class attr w/JavaScript on IE, FF, Chrome, etc.?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a Jquery Tree plugin for my current project. In
I'm trying out jstree, the jquery plugin to create a treeview. It works fine,
I'm trying to create a jQuery Slider like this . I can't find any
This is my first stab at trying to create a JQuery plugin, so I
I have been trying to create a menu panel with jQuery that can be
I am trying to create a jquery plugin to do ajax table pagination (i.e
I'm am trying to create a jQuery plugin that will add new namespace functions
i'm trying to create my first jQuery plugin. i got a prototype function called
I'm trying to create a jQuery plugin, inside I need to do an AJAX
I'm trying to create a jquery function that can be called both on ready

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.