Form/javascript Not Working On Ie 11 With Error Dom7011
Solution 1:
This issue occurs if the server sends a "Cache-control:no-store" header or sends a "Cache-control:no-cache" header.
Solution 2:
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.
Solution 3:
This error occurred for me when using window.location.reload()
. Replacing with window.location = window.location.href
solved the problem.
Solution 4:
I faced the same issue before. I cleared all the IE caches/browsing history/cookies & re-launch IE. It works after caches removed.
You may have a try. :)
Solution 5:
In my case, this exception was being caused by an unsecure ajax call on an SSL enabled site. Specifically: my url was 'http://...'
instead of 'https://...'
. I just replaced it with '//...'
.
To me, the error was misleading, and hopefully this may help anyone landing here after searching for the same error.
Post a Comment for "Form/javascript Not Working On Ie 11 With Error Dom7011"