Does anyone know how to automatically submit a form via AJAX, without, having to explicitly click on the submit button. For example, say I have the following form:
Solution 2:
You can define the $.ajax... function inside another function
functionsubmitForm(){
$.ajax...
}
then, you can call this function whenever you like.
Post a Comment for "Ajax Auto Form Submit"