I want the submit action on a form() to be automatically fired when all input elements within this form are completed/filled. How to do it using ajax?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Something like the following:
Note the following: |
|||||||||||||
|
|
Update: In addition to Karim79.
Try this: $("form")[0].submit(); You will need to call this function after a fields has been validate. And check this site. |
||||
|
|
