An error has ocurredJSPlugin.3005

JavascriptWindowsInternet ExplorerBrowserIe11 Developer-Tools

Javascript Problem Overview


I installed IE11 on server 2008r2. I was trying to debug using IE11 and I am having the following error. The error I am having in the Dom Explorer tab is:

Diagnostic:

Exception in window.onload: Error: An error has ocurredJSPlugin.3005

Stack Trace:

Error: An error has ocurredJSPlugin.3005 at getString (res://C:\Program Files\Internet Explorer\F12Resources.dll/23/pluginhost/plugin.f12.js:5021:27) at ToolWindowHelpers.loadString (res://C:\Program Files\Internet Explorer\F12Resources.dll/23/Common/CommonMerged.js:5803:13) at TabPanes..

Javascript Solutions


Solution 1 - Javascript

Solution 2 - Javascript

> I found the cause for this problem. I upgraded Internet explorer directly from IE8 to IE11. So I got the above said error during debugging.

> Then I downgraded Internet explorer from IE11 to previous one(IE8). Then upgraded IE8 to IE10. Again upgraded IE10 to IE11. Now the debugger for IE11 is working fine.

Solution 3 - Javascript

Just a small update for Season714's answer if you're using Windows 7:

M$ did some magic things cause Windows 7 Updates take forever, so before you install those IE updates, you have to disable your network adapter first.

By doing that, that update installation will start in few seconds and the error will be fixed. But if you don't, Windows Update will run first and it would take forever to complete.

Solution 4 - Javascript

I had this problem in my Windows 7 freshly installed virtual machine.

Apparently all of the updates were not installed immediately. I had to install Windows updates several times and restart also serveral times until all of the updates were installed and the issue went away.

First update upgraded from IE8 to IE11. And after that I think it was 2 more updates to have it fixed.

Solution 5 - Javascript

write this in your code into tag like this:

<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
</head>

if someone have the same problem

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionselvakumarView Question on Stackoverflow
Solution 1 - JavascriptSeason714View Answer on Stackoverflow
Solution 2 - JavascriptselvakumarView Answer on Stackoverflow
Solution 3 - Javascripttucq88View Answer on Stackoverflow
Solution 4 - JavascriptMargus PalaView Answer on Stackoverflow
Solution 5 - JavascriptRO NerioView Answer on Stackoverflow