How To Autosubmit Data Html Form?
I have this simple form:
Solution 2:
If you add an ID to that form you could do it like this .
$('#FORM_ID').submit();
with jQuery
form = document.getElementById('FORM_ID');
form.submit();
or with JavaScript
Post a Comment for "How To Autosubmit Data Html Form?"