I am trying to submit a form by using jquery automatically after page load
$(function(){
$("input[name=name]").val("somename");
$("input[name=email]").val("323@ds.com");
$('#aweberform').submit();
});
Both the name/email value can be seen to get populated on the form. But the submit event wont triggered.
Any one here that can shed any lights ?
thanks !
I had to remove my Submit button to get
$('#myForm').submit()
to work. Not sure why.ok i found out the problem
apparently the submit input cannot have the name submit
changed to
and that got the problem fixed
Try this
document.getElementById('formId').submit();
Try this
$('#aweberform').submit();
Add a function in the submit. Seems to work for me.