I am new to Parsley.
I want to validate a field is either an email address or 9 didgit number
html
<form id="registerform">
<h1> Register form </h1>
<input type="text" id="memberdata" required>
<input type="submit">
</form>
$( document ).ready(function() {
$( "#registerform" ).submit(function( event ) {
$('#registerform').parsley();
var data = $("#memberInfo", this).val();
callRegisterAPI(data, type);
});
});
How is the best way of going about validating this and on success calling the callRegisterAPI.
Thanks
Use regex.
9 digit number is
/^\d{9}$/
Email is deceptively simple, but is actually quite complex, especially considering IDN characters
For example,
почта@макс.укр
is valid and working email address. You can actually email to me using it :-) Unfortunately lots of website do not validate it as valid email addresshttp://ex-parrot.com/~pdw/Mail-RFC822-Address.html