Forum Moderators: open
<script>
function i_was_called_from_row(Cell_content)
{
alert (Cell_content);
}
<body>
<table id="mytable">
<tr onclick="i_was_called_from_row(?)>
<td>Cell_content</td>
</tr>
</table>
So how can I pass the cell content as argument to the fuction?
Thanks