Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In javascript, how to get a class name from a td cell?

example:

<td class="ColumnHeader" style="text-align:right;" >

class "ColumnHeader" is a class inside css, how could i retrieve it from css and changed the width size in javascript?

share|improve this question
Are you trying to modify a stylesheet with JS or modify the class attribute of a DomNode? – jnewman Nov 15 '11 at 2:36

2 Answers

up vote 2 down vote accepted

Select all the <td> elements via getElementsByTagName() and iterate over them looking for the className:

var tds = document.getElementsByTagName("td");
for (var i = 0; i<tds.length; i++) {

  // If it currently has the ColumnHeader class...
  if (tds[i].className == "ColumnHeader") {
    // Set a new width
    tds[i].style.width = new_width;

    // Or set a different class which defines the width
    tds[i].className = "someOtherClass";
  }
}
share|improve this answer

You can't really change the width of the css class programatically, but you can change it on the element:

td.style.width = newWidth;

To get the class name from an element, use:

var className = td.className;
share|improve this answer
td.style.width = td.style.width +/- newWidth ? – Moe Sweet Nov 15 '11 at 2:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.