<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"
In this above table, how can i replace last two cells values with a string "abcd" |
||||
|
|
You can change the text of both cells at once by passing a negative start index to slice():
|
|||||||
|
|
The following will replace the values in the last two cells, but I'm not sure that's what you really want:
|
|||
thay should work (you could use :last to get the last as well |
|||||||
|