Would this Jquery selector work?
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-03-14T07:19:36Z
Indexed on
2010/03/14
7:25 UTC
Read the original article
Hit count: 168
jquery-selectors
Hi all, would the following Jquery selector get all of the 4th td elements of all the tables on the current page, and return their text as an array?:
var isbn = $.makeArray($("table tr td:nth-child(4)").text());
© Stack Overflow or respective owner