I'm loading a form in an iframe (with facebox). When the form is submitted and the page inside the iframe is reloaded, I would like to add a CSS class to a specific table-row on the parent page.
the table looks like this:
<table>
<tr id="row-1"><td><a href="">link to open facebox with iframe</a></td></tr>
<tr id="row-2"><td></td></tr>
<tr id="row-3"><td></td></tr>
<tr id="row-4"><td></td></tr>
</table>
After the form is submitted in the iframe, the table in the parent frame should look like this:
<table>
<tr id="row-1" **class="highlite"**>
<td><a href="">link to open facebox with iframe</a></td>
</tr>
<tr id="row-2"><td></td></tr>
<tr id="row-3"><td></td></tr>
<tr id="row-4"><td></td></tr>
</table>
Can the community assist me in implementing this correctly?