Either the :eq()
selector or the .eq()
method will allow you to select the proper item. However, to replace the text, you must get the value before you set it:
1
2
3
4
5
6
7
8
9
|
|
The first example just discards the modified text. The second example saves the modified text and then replaces the old text with the new modified text. Remember, .text()
gets; .text( "foo" )
sets.