I am looking at this resource here:
http://jqueryvalidation.org/remote-method#options
In their example code:
$( "#myform" ).validate({
rules: {
email: {
required: true,
email: true,
remote: "check-email.php"
}
}
});
What do I need to pass back or echo back within check-email.php?
Also, will this work with post forms?