SyntaxFix
Write A Post
Hire A Developer
Questions
The easiest solution to workaround this is to create 'temporary' input with type submit and trigger click:
var submitInput = $("<input type='submit' />"); $("#aspnetForm").append(submitInput); submitInput.trigger("click");