I have the following code
<ul id="expList">
<li>TITLE
<ul>
<li>
</li>
</ul>
</li>
<li>INNOCULUM
<ul>
<li>
<form><table border=1 frame=border name='mytable' id='mytable'>
<tr><th >Select</td><th >Field</td><td>Value to be updated</td>/tr>
<tr>
<td><input type='checkbox' name='check1'></td>
<th>INNOCULUM</td>
<td><input type='text' name='innoculum'/></td></tr>
<tr><td><input type='checkbox' name='check2'></td>
<th>ORGANISM</td>
<td><input type='text' name='organism'/></td></tr>
</li>
</ul>
</li>
</ul>
This is a sample code where i included checkbox in expandable list created using jquery. Unfortunately it is not working for me. Checkbox is not getting enabled. Please help me out
