Inputs and assign click handler
Hi,
How can I get all input boxes that come under this div and assign a click handler to each checkbox?
<div id="divTest">
<input type="checkbox" checked="checked" value="All" /> All text<br/>
<input type="checkbox" value="0" /> 0 text<br/>
<input type="checkbox" value="1" /> 1 text<br/>
<input type="checkbox" value="2" /> 2 text<br/>
</div>
Thanks,
-ws