Next, how can I capture the pure html of a page, for example "site.com.br/tabela_precos"
, this site has a return basically like this:
<html> ....
arquivos e configurações javascript ....
outras tags html .....
......
and here is a table
<h2 id="tabela_titulo">Título</h2>
<table id="tabela_info">
<tr>
<td>Dado da tabela</td>
</tr>
The <tr> e <td>
are without id / class, the idea would be to loop with them, as they follow a pattern will have no problems ...
and after picking up these values, I would like to send them via Ajax to a PHP file