Form/JavaScript not working on IE 11 with error DOM7011 Form/JavaScript not working on IE 11 with error DOM7011 javascript javascript

Form/JavaScript not working on IE 11 with error DOM7011


This issue occurs if the server sends a "Cache-control:no-store" header or sends a "Cache-control:no-cache" header.


I have seen exactly the same error, also with IE11. In my case the issue occurred when user clicked <button> element, which was inside <form> tags.

The issue was remedied, by placing the <button> outside of <form> tags.


This error occurred for me when using window.location.reload(). Replacing with window.location = window.location.href solved the problem.