I am looking to select the last td in each row and using this css selector right now .table td:last-child but it doesnt work in IE so is there any way I can select through javascript (WITHOUT ANY FRAMEWORK) for IE? to apply CSS styles.
|
|
|||
Example: http://jsfiddle.net/JsyYR/ EDIT: If you'll be running this in all browsers, it may be safer to do this:
Example: http://jsfiddle.net/JsyYR/2/ This is because some browsers will insert a text node if there's any space between the last |
||||
|
|
|
To do this in JavaScript you need something like:
This assumes the table is of the format with nothing between those tags. No tbody or such. Alternatively you could simply use |
|||||||||
|
|
Whether you could or not should be moot. Of course you could because Javascript frameworks can do this. Whether you should spend the time reinventing the wheel when you could just add a small dependency on a JS library, should be the question. |
|||||||||||
|
|
In Javascript, you can reference The obvious answer is "Use JQuery". You have specified against this (ie "without any framework"), but it is by far the most obvious solution. Another solution is Dean Edwards' IE7.js (and related IE8.js and IE9.js) which is a Javascript include that attempts to patch old versions of IE to be more compatible with standard CSS, etc. I believe it fixes You could, of course, just add an additional class to the elements that you want the last child styles to apply to, and then just reference that in your CSS instead of last-child. Not ideal given that |
|||
|
|
last-childandfirst-childshould work for IE7 and up. – Evan Mulawski Nov 15 '10 at 15:05