Jump to content

currentStyle issue


sader

Recommended Posts

Hi

I try to create elements with javascript like so:

 

/*this is not actual code but the point is in the sequence*/

var elem = document.createElement("div");
elem.setAttribute("class", "nice_div");
var border_width = elem.currentStyle.borderWidth;
elem.width = 250 - border_width;
documrent.body.appendChild(elem);

 

Ok now the problem.

As you can see I am trying get borderWidth after I have set class for element but here's the thing currentStyle is not updated - all values(currentStyle.color, currentStyle.background etc.) are null so I can't calculate and set correct width for element.

 

I was able to eliminate this issue by changing sequence of some actions:

var elem = document.createElement("div");
documrent.body.appendChild(elem); //<= first append
elem.setAttribute("class", "nice_div"); //set class after the node is appended
var border_width = elem.currentStyle.borderWidth; //now currentStyle values are updated
elem.width = 250 - border_width;

 

So ok I found the way to make my code to work, but I am not sure I like that I must remember the order maybe there is another better way to solve this problem? for example function elem.update() elem.refersh() or smth.. ?

 

Anyway in FF getComputedStyle works well in both examples (order is ignored)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.