so I have a sign up form and I want to validate it with the jQuery Validation. I'm a beginnner and I'm not really sure how it works..
Lets say I have an input of a phone number:
<label class="labelinput" for="phonenum">Phone Number: </label>
<input type="text" id="cell" name="cell" class="forminput" /><br />
And I want to validate with jQuery that the first digit is zero and that it's length is 10 digits. How can I do that?