$(\'#servertable td:eq(\' + server + \')\')
this finds only 1 (first I think) match, how to find all matches. btw. td:contains will not work for me.>
$('#servertable td')
will find all td elements, but it's not entirely clear what you expect.