Another seemingly simple question about Javascript and DOM references:
(I hope it's a simpler answer than the last one - I'll get back to that when this demo project is done)
I'm using a highlighting-row table object - that part is easy:
<table id="whatever" summary="simplified version to post">
<tr onmouseover='hilite(this);' onmouseout='unHilite(this);' />
<td> one</td>
<td>two</td>
<td>three</td>
<td>four</td>
<td><input type='radio' id='id1' name='id1' value='some_string"></td>
</tr>
....etc....
I want to add an onclick event handler to the row to simply click() the radio button (to make it easier on the lazy user who wants it to act like a select
I would use a select if not for multiple fields that must line up pretty...)
I have tried: this.every.damn.combination.i.could.think.of to try and reference the radio button.
anyone have a clue? I know I don't. (life is much simpler on the server side)
Thanks in advance
<}



">
Reply With Quote

Bookmarks