I'd like to extract all the ISBNs on a dynamic web page that I can't feed through a Yahoo Pipe (the user has to log in to see the page). Is there a way to do that with jQuery? How?
Edit: The structure:
Here's an example of what the HTML looks like on that page. There's a <table> that has a series of <tr> elements in them. A sample one of those looks roughly like this:
<tr>
<td>(required/optional)</td>
<td>LAFORE</td>
<td>OBJECT ORIENTED PROGRAMMING IN C++ 4E</td>
<td>9780672323089</td>
<td>(course and section)</td>
<td>(pricing information)</td>
</tr>
There are no id attributes on any of these, the structure is well defined though.
Thanks!
text()to get the ISBN. Otherwise, you will have to use regular expressions and basically search on the entire page. – Anurag Mar 13 '10 at 6:17