capture html from an external page grab data from the table and send via Ajax

0

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

    
asked by anonymous 21.05.2017 / 02:52

0 answers