Ajax Auto Form Submit
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:
You can define the $.ajax... function inside another function
functionsubmitForm(){
$.ajax...
}
then, you can call this function whenever you like.
$('.column').keyup(function(){
submitForm();
});
Post a Comment for "Ajax Auto Form Submit"