How I have to validate the checkbox in customer account signup form?

forms, magento, validation

Solution

In frontend you can validate the checkboxes by adding them the class `"required-entry"`

<input type="checkbox" id="something" name="something" value="1" title="something" class="checkbox required-entry">

you can read more on this from http://blog.speedupmate.com/post/4062082985/javascript-validation-methods-in-magento

Problem

I am new to magento. How I have to validate the checkbox in customer account signup form?. Which class is used to validate the checkbox in magento?

Original source