How to grab just a <table> from a jQuery .get()?

How to grab just a <table> from a jQuery .get()?

I'm using a jQuery .get() to fetch all the HTML from a page.

This page has a couple different <table> sections but I'd just like to grab the entire table that has the data I want from <table> to </table> with none of the other HTML from the page.

How can I do that? Unfortunately there's no "id" or "class" attributes on this table either so I can't select by id or class. Thanks!