In the code you have pasted there you do not close your tbody tag could this be the case in your actual code?
On Sep 29, 7:18 am, Xarem Nightslayer <i...@ueli-banholzer.com> wrote: > hi > > I've a Problem: > > I have a table like this: > > <table class="sortable" id="res"> > <thead> > <tr> > <th>123</th> > <th>123</th> > <th>123</th> > </tr> > </thead> > <tbody> > <tr> > <td>123</td> > <td>123</td> > <td>123</td> > </tr> > <tfoot> > <tr> > <th>123</th> > <th>123</th> > <th>123</th> > </tr> > </tfoot> > </table> > > Now I made this script: > $(document).ready(function() { > $("table tbody tr:last td").css("border", "none"); > > }); > > But that doesn't work. Does anybody know why? > > thank you