Questions tagged [ie11-developer-tools]
121 questions
2
votes
1 answer
Want to run my website in IE11, but in edge document mode
We have created an application that works well in Chrome, Safari, Firefox, and Edge. Now one of user tried to use Internet Explorer and there were a lot of UI issues.
We have tried setting meta tags, to set document mode to edge in IE11, but it's…

Krunal Parmar
- 491
- 2
- 19
2
votes
1 answer
Opening IE 11 dev tool causing the issue
I work on Angular 4, I have a language list and each list has a star beside it. As soon as the user clicks on star the language is added to favourites.
Issue: Ones I click on star the language appears to be added to the favourite list but when I…

Anna
- 1,669
- 7
- 38
- 63
2
votes
0 answers
How do you view real time browser memory usage?
I have a Javascript heavy application that uses Angular 1.3
In Chrome it (typically) runs just fine, but when I load the same page in IE11 and view CPU and Memory in Windows task manager, the CPU is at 95% and Memory around 200MB! This is just a…

resourceful-idiot
- 68
- 12
2
votes
4 answers
IE 11 is taking long time to load ng-option when dev tool is open
The following code is taking long time in IE11 to load when developer tool is open. Without developer tool open the code is loading quickly.
I have reproduce this issue in Fiddle.
Note: Open the developer tool first and open the fiddle link to…

Shrinivas Pai
- 7,491
- 4
- 29
- 56
2
votes
2 answers
IE11 appendChild/removeChild memory leak
I have come across an issue where I have created a grid that gets built up dynamically by using a document fragment and appending elements to it before appending it to a div. I have noticed that appendChild and removeChild seems to be causing memory…

Steve Buchok
- 169
- 1
- 10
2
votes
2 answers
Find out who overrides a class in IE Developer Tools
I'm using IE developer toolbar to analyze the DOM. My question is: when you check a certain element, let's say a paragraph, and that paragraph has a class that will set its background-color, but for some reason that class is overridden by another…

user2818430
- 5,853
- 21
- 82
- 148
2
votes
2 answers
ReactJS doesn't render in IE11
My site works flawlessly in web browsers, but IE11 shows this error in console.
What should I do with this?
React.render(
,
document.getElementById('newsFeed')
);
'NewsFeed' is undefined
EDIT:
Here is the…

Kokesh
- 3,165
- 7
- 29
- 46
2
votes
1 answer
IE 11 document mode by default
By default IE 11 starts with some wired IE 7 settings (emulation mode) that brakes my JS and everything! 2 hours I try to fix this issues! I can go to developer toolbar F12 and there set the emulator to IE 10 and then it works.
I don't want to go…

David Dury
- 5,537
- 12
- 56
- 94
2
votes
1 answer
Is it possible to execute arbitrary javascript in IE Devtools?
Trying to troubleshoot something that of course only happens in IE, but I can't seem to get it to allow me to execute any code in the JS console. Is there some magic keypress that turns that function on?

boatcoder
- 17,525
- 18
- 114
- 178
2
votes
2 answers
Incomplete HTML in IE 11
I am working on a site that does not render in IE 11, but works fine in every other browsers.
When I debug it using F12 Developer Tools, the DOM is essentially empty except from the header section. When I view the source code, it only returns the…

Andy T
- 10,223
- 5
- 53
- 95
1
vote
1 answer
How to check TLS version of request when web service is called via button click?
In internet explorer I open a website. Then click on a button on the web page which makes a secure call to an api located on a 3rd party server.
Is there any way to check what version of ssl/tls is used by internet explorer to make this api call?
I…

variable
- 8,262
- 9
- 95
- 215
1
vote
1 answer
What value needs to passed for X-UA-Compatible meta tag's content attribute to set document mode as 5?
Working on a legacy application, one of the UI functionality is breaking in IE11. While trying emulating different docModes, it's working fine for doc mode = 5 and UserAgent = IE 11
I Want to set this behavior through the application code, I have…

Ashutosh Sharma
- 118
- 2
- 18
1
vote
1 answer
React app not rendering in IE 11 even with polyfills
I have a fully built React application that I would like to deploy on IE 11, but been having no success but a white page.
For the sake of testing, I created a dummy app using npx create-react-app and attempted to launch on IE 11/Edge. Installing…

en6in33r
- 276
- 1
- 5
- 15
1
vote
0 answers
Debugging Angular 8 "Invalid argument" in IE11
I've recently upgrade a large Angular application from 7.2 to 8. In IE11 I'm getting an error message ERROR Error: Invalid argument. I've read a couple of post that explain what the cause might be but I have no idea how to find the source of the…

moefinley
- 1,248
- 1
- 13
- 26
1
vote
1 answer
ClearMyTracksByProcess Without Dialog | WinHttp.WinHttpRequest.5.1 | MSXML2.XMLHTTP
I have a VBS that runs CreateObject("MSXML2.XMLHTTP").Open "GET" however, I need to delete the IE11 cache before it runs because the get keeps pulling a cached version of the website that wont expire for 1 minute after the inital get. If I use…
user8688718