
Announcements
I there! I have a dynamic table which I want to add rows to, each row will get a new id, which I want to read from the just added row in the table. I fail to find a good way of doing this. I can get the first rows id from the table but not the last 🙂
Any advice?
BR
Robert
If you can extract the first row id, the selector probably looks like this: tr:eq(0)
Try changing it to tr:eq(-1) which should select the last row 🙂