|
I've never had success using JS events on table rows, either. I think this is because a <td> sits on top of the <tr>, so whenever you click on a row, you're actually clicking on the <td>.
Try putting your onclick on all the <td>s. It works for me, but isn't very efficient.
|