We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onStepChanging: function(event, currentIndex, newIndex) { if(currentIndex == 0) { $.post("ValidateEmail.php",{email:email},function(data, status){ if(data == 1) { return false; } else { return true; } }); } }
When I tried this, it keeps on the same step does't go to the next step, is there any issue in my code or it does't support with ajax validation ?
The text was updated successfully, but these errors were encountered:
@yogeshkoli The jQuery POST is asynchronous but onStepChanging doesn't support this. See #151 for a possible solution.
Sorry, something went wrong.
Have made new changes to code,hope it is helpful to all see New changes
Thanks @simono it works for me.
No branches or pull requests
When I tried this, it keeps on the same step does't go to the next step, is there any issue in my code or it does't support with ajax validation ?
The text was updated successfully, but these errors were encountered: