Hi,
I am new on these forums, I used to use other forums to get some help with some of my stuff but they suddenly disappeared...
So I have the following code:
When one of the input fields is clicked, I want the website to check the last radio button.HTML Code:<TABLE width="100%" class="shared_table"> <thead> <tr> <th class="compare"></th> <th class="compare">Selecteer</th> </tr> </thead> <TR class="odd"> <td><b>lorem ipsum</b> blabla</td> <td width="15%"><input type="radio" name="ns" value="nee" checked></td> </TR> <TR class="even"> <td><b>blabla</b> <table width="100%"> <tr> <td width="50%"><span class="cents">bla 1</span> </td> <td width="50%"><input name="ns1" type="text" value=""> </td> </tr> <tr> <td width="50%"><span class="cents">bla 2</span> </td> <td width="50%"><input name="ns2" type="text" value=""> </td> </tr> </table> </td> <td width="15%"><input type="radio" name="ns" value="ja"></td> </TR> </table>
So if
or ifHTML Code:<input name="ns1" type="text" value="">
is clicked i want the website to checkHTML Code:<input name="ns2" type="text" value="">
and to uncheckHTML Code:<input type="radio" name="ns" value="ja">
How do I achieve this?HTML Code:<input type="radio" name="ns" value="nee" checked>



Reply With Quote

Bookmarks