.eq method for child element?
Hello,
i have what might be an obvious question - i have this code to remove the third table in a given DOM:
$
(
'table:eq(2)'
).
remove
();. Can someone tell me how I could modify this to remove the second cell (TD) of the third table? I imagine I'd use eq again, but i am not sure how to write this....
Thank you very much in advance for your help, I've been hitting my head against a wall with this.