Below is my structure.
<span class="mrQuestionTable">
<span id="Cell.0.0">
<input type="checkbox" name="_QC05_C__1" id="_Q0_C0" class="mrMultiple" value="__1"/>
<span class="mrMultipleText" style="">Mobile-related fraud (Fraud via mobile channels)</span>
</span>
<span id="Cell.0.1">
<input type="checkbox" name="_QC05_C__2" id="_Q0_C1" class="mrMultiple" value="__2"/>
<span class="mrMultipleText" style="">Cost (managing, implementation related costs)</span>
</span>
</span>
I used the below code to count the length. Once i hit the checkbox it shows me length of 0. Instead it should show 1. Please let me know why this is happening?
alert($('.mrMultiple:checkbox:checked').length);