Submit dynamically created form using jQuery

jqueryTried to submit a dynamically created form from an ajax response using jQuery. But couldn’t get it to work. Used the call $(“#formId”).submit();

At last I found the cause why the form wasn’t submitting. In the form a button element with name “submit” was existing once i renamed the button, the form could be submitted. =)
Example:

<form id="theForm" method="post">
<input type="hidden" value="0">
<button name="submit" type="button">
</button>
</form>

Renamed the button, then the form could be submitted!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.