I am trying to place text in the 6th table cell of each row of my table. But all I am getting is the first row selected:

$('tbody tr:even td:eq(5)').each(function(){
                $(this).text('$145');
            });

What adjustment do I need to make?

link|improve this question

1  
Where's your HTML? Also in your post you say "each row", but in the code you are using tr:even? – Cybernate Jun 22 '11 at 21:01
feedback

2 Answers

up vote 3 down vote accepted

I think that the following should work:

$('tbody tr').each(
function(){
    $(this).find('td:eq(5)').text('$145');
});

JS Fiddle demo.

Reference:

link|improve this answer
Thanks that worked!!! – Mojaray2k Jun 22 '11 at 21:11
@Mojaray2k: you're quite welcome; glad to have helped! :) – David Thomas Jun 22 '11 at 21:15
1  
This also works $('tbody tr').find('td:eq(5)').text('$145'); – Colin Jun 22 '11 at 21:19
feedback
$( 'table tr' ).each( function() {

  $(this).find( 'td' ).eq(5).text('$145');

});

UPDATE

Since the accepted anwser does the same thing but using the :eq() selector instead of the .eq() method, it's worth reading the additional notes on the jQuery DOCs for the eq selector:

Because :eq() is a jQuery extension and not part of the CSS specification, queries using :eq() cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. For better performance in modern browsers, use $("your-pure-css-selector").eq(index) instead.

So I think it's advisable to use the .eq() method instead of the :eq() selector.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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