I have saved the following in a variable:
register = "<iframe id='registro' src='estudios/info-estudios/'></iframe>"
Within that variable I get a table that exists in src = 'studies / info-studies /', which is the following:
<table id="info-table" class="table table-bordered">
<tbody>
<tr class="active">
<td>VALOR</td>
<td>
152
</td>
</tr>
<tr class="active">
<td>REGISTRO</td>
<td id='registro'>
No
</td>
</tr>
</tbody>
What I want is to parse the field of that table with id = 'record' with JQUERY and save the result in another variable to be able to use. If I print register it shows me the whole table correctly, what I want is to be able to simply print the YES or NO value of the record field. Thank you very much.