Displaying 1 result from an estimated 1 matches for "shiptablemenu".
2007 May 16
1
Finding the Button inside the CELL
Hi all
Here i am stuck to a problem . i want to execute the click event of a
button which is being located in the table cell which dont have any id.
So please give me any solution for that.
Example:
<table id="MainTable">
<tr>
<td>
<table id="ShipTableMenu" >
<tr>
<td><input type="button" value="Test" id="cmdTest"
name="cmdTest" onclick="TestClick(true,false);">
</td>
</tr>
</td>
</tr>
</table>
Now I want to Lo...