IE11 ignoring script

IE11 ignoring script

I have the following submitHandler that's being ignored by IE only... IE11 in my case. The form data is passing through to our database, but the modal doesn't hide and the window/tab to the downloads page doesn't open. Any ideas? 

  1. submitHandler: function(form) {
  2.   HTMLFormElement.prototype.submit.call(form);
  3.   $('#modalForm').modal('hide');
  4.   window.open("http://www.foo.com/downloads");
  5. }