Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
  <table>
     <tr>
      <td>aaaa</td>
      <td>bbbb</td>
      <td>cccc</td>
      <td>dddd</td>
     </tr>
  </table>

In this above table, how can i replace last two cells values with a string "abcd"

share|improve this question
Do you want to replace the values in the last 2 cells of the table, or of the row? – RobG Jul 6 '11 at 14:05

3 Answers

up vote 2 down vote accepted

You can change the text of both cells at once by passing a negative start index to slice():

$("td").slice(-2).text("abcd");
share|improve this answer
Thanks Mr. Frederic. It is working fine. How can we implement same task using table id – Hearaman Jul 6 '11 at 14:10
@Hearaman, you only need to include an id selector, such as $("#yourTableId td").slice(...). – Frédéric Hamidi Jul 6 '11 at 14:19
ok. Thanks you It is working.... – Hearaman Jul 6 '11 at 14:25

The following will replace the values in the last two cells, but I'm not sure that's what you really want:

var cells = document.getElementsByTagName('td');
var i = cells.length;
cells[--i].innerHTML = 'abcd';
cells[--i].innerHTML = 'abcd';
share|improve this answer
please modify this var i=cell.length. It is working fine – Hearaman Jul 6 '11 at 14:14
very very simpleee logic. – Hearaman Jul 6 '11 at 14:15
  $('td').eq(-2).html('this is the secon to last')
  $('td').eq(-1).html('this is the last')

thay should work (you could use :last to get the last as well

share|improve this answer
or the :eq() – qwertymk Jul 6 '11 at 14:00
It is working for only one cell – Hearaman Jul 6 '11 at 14:02
@qwertymk, negative indices are supported by the eq() method but not by the :eq() selector. – Frédéric Hamidi Jul 6 '11 at 14:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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