Hi,
I'm loading a form in an iframe (with facebox). When the form is submitted and the page inside the iframe is reload, 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 on 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>
Thanks in advance for any help.
Kind regards, BBJ