This returns everything that should be inside the table.
alert($('table[width="100%"][cellspacing="0"][cellpadding="10"][border="0"]:eq(0)').html());
How do I get the HTML inside the table, as well as the actual table tag, in this case
<table width="100%" cellspacing="0" cellpadding="10" border="0">
----html----
</table>
source
share