Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a form that can optionally be pre-populated via facebook connect. Once a user connects, their name and email are automatically filled in. The problem is that this doesn't trigger the remote validation to check if the email already exists.

Is there a way I could call the validation on that field alone? Something like:

$('#email-field-only').validate()

would be idea. Searched through the docs with no luck.

share|improve this question

5 Answers

This method seems to do what you want:

$('#email-field-only').valid();
share|improve this answer
thanks! I didn't know ... – brainondev May 25 '12 at 14:33
1  
Note: form element name also works with this function, i.e. $('input[name=email-field-only]').valid(); also works – Shivan Raptor Nov 22 '12 at 7:17

Remote validation? If this is already implemented, and it works through events in your form, you could try triggering these events. Like:

$('#email-field-only').change();

Which will trigger the onchange event, usually used by validators.

share|improve this answer

When you set up your validation, you should be saving the validator object. you can use this to validate individual fields.

<script type="text/javascript">
var _validator;
$(function () {    
     _validator = $("#form").validate();   
});

function doSomething() {    
     _validator.element($('#someElement'));
}
</script> 

-- cross posted with this similar question

share|improve this answer

For some reason, some of the other methods don't work until the field has been focused/blured/changed, or a submit has been attempted... this works for me.

$("#formid").data('validator').element('#element');

Had to dig through the jquery.validate script to find it...

share|improve this answer
$("#element").validate().valid()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.