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?
|
In javascript, how to get a class name from a td cell? example:
class "ColumnHeader" is a class inside css, how could i retrieve it from css and changed the width size in javascript? |
||||
|
Select all the
|
|||
|
|
|
You can't really change the width of the css class programatically, but you can change it on the element:
To get the class name from an element, use:
|
|||
|
|
classattribute of a DomNode? – jnewman Nov 15 '11 at 2:36