I'm learning Jquery, so that it's not easy for me to Implement what i want.
I'v a html form which validate using jquery validation plugin. So after validate is complete I want to send the form data to php page. In php page all data will be go to mysql database and after successfully inserted it should be show a successful message which (success message) will be get back to jquery submitHandler() so that I can show the success message in same page. Can you please show my how can i do this ?
$.validator.setDefaults({
submitHandler: function() { alert("submitted!"); }
});
Note : Without Alert message