We've got a form that's been working for the longest, however we've been seeing a particular bug occuring in Internet Explorer 11.
When we first submit the form using a regular submit button, it fires of the POST request, and everything works as should. However, once we return to the form, and the values we've entered before are filled in for us (editing the data), the submit button does not actually send the POST request, it just stays on the same page.
We've found this to only be the case in IE11, in Edge it works fine, and also in Chrome. The only changes with the form elements is the assigning of values and selected options.
We've tried looking if there are events registered that are blocking the form submit, but couldn't find anything that would block it.
Are there any known issues with submitting forms in IE, or can we get a hand on the best way to debug this? Thanks for any assitance. We're running jQuery 1.11.1 (we've tried running 1.12 already, works with our legacy code, but doesn't solve the issue).