How do I get the class name through JavaScript using element name from classic HTML.
Like:
<input name="xxx" class="CheckBox" onchange="CheckOnChange()"
type="CHECKBOX" checked="" value="Y">
I want to check the fields which has the class name "Checkbox" .
How can I solve this? Please help me.