Hey
I have to get some data from a html page into an other page. I know how to get the data by a simple AJAX request, but I don't know to find the data.
The data i need to find is in a table, and there are about 100 rows in it. I only need to get one. The only thing i got is the persons ID.
The row looks like this:
[HTML]
<tr class="Lyscell" >
<td>48</td>
<td>29</td>
<td>Persons name</td>
<td>Persons ID</td>
</tr>
[/HTML]
I was thinking of a regexp or something, but i'm open for all other ways to find the data in the html page :)
I have to get some data from a html page into an other page. I know how to get the data by a simple AJAX request, but I don't know to find the data.
The data i need to find is in a table, and there are about 100 rows in it. I only need to get one. The only thing i got is the persons ID.
The row looks like this:
[HTML]
<tr class="Lyscell" >
<td>48</td>
<td>29</td>
<td>Persons name</td>
<td>Persons ID</td>
</tr>
[/HTML]
I was thinking of a regexp or something, but i'm open for all other ways to find the data in the html page :)
Comment