Can anyone tell me how I can make the following work...
<table>
<div id="1">
<tr><td>testing </td></tr>
</div>
<input type="button" value="test" onClick="javasc ipt:removeQuest ion('1','1')">
</table>
The Javascript will not recognize the div because it is wrapped in TR and TD.
<table>
<div id="1">
<tr><td>testing </td></tr>
</div>
<input type="button" value="test" onClick="javasc ipt:removeQuest ion('1','1')">
</table>
The Javascript will not recognize the div because it is wrapped in TR and TD.
Comment