internet-explorer-10

IE10 - Setting specific browser & document modes

别等时光非礼了梦想. 提交于 2020-01-02 02:38:08
问题 I need to get an old web application to display correctly in IE10. Using the developer tools of IE, the configuration of IE10 Compatibility browser mode & IE5 Quirks document mode, proved to be the best configuration. Using the pages code-behind to adjust the response header to include the 'X-UA-Compatible' HTTP header when the browser is IE10, the document mode is correctly set to IE5 Quirks mode, but the browser mode is still stuck on IE10. While the web application is being re-factored to

CSS blur filter not working in Firefox and IE 10, any alternatives?

风格不统一 提交于 2020-01-01 06:43:05
问题 I'm using this CSS code for blur effect: .blur{ -webkit-filter : blur(5px); -moz-filter : blur(5px); -o-filter : blur(5px); -ms-filter : blur(5px); filter : blur(5px); opacity : 0.4 ; } and the blur is working fine in Chrome, but nothing happens in Firefox or IE 10. I also tried this example http://jsbin.com/ulufot/31/edit but for IE 10, none worked. I need some advice at this moment, because I'm runing out of ideas... 回答1: CSS3 filters are not supported in IE10 or Firefox (v.23), and support

IE 9 and 10 box-shadow on resizing element

我的未来我决定 提交于 2020-01-01 05:13:07
问题 http://jsbin.com/ararar/5/edit tl;dr The above link is a quick example of the problem further described below. Click on the li:s to remove them, and see the rendering glitch in IE9 or IE10. In an app that my team is building, we have a box for search results, that changes in height depending on the number of matches. The element has a box-shadow applied to it. The problem is in IE9 and IE10, when the box becomes smaller. It seems like IE will "forget" about the box-shadow, and only re-render

Internet Explorer: SCRIPT7002: XMLHttpRequest: Network Error 0x2f7d, Could not complete the operation due to error 00002f7d

寵の児 提交于 2020-01-01 04:16:50
问题 This problem is driving me nuts. Our web app uses HTTP POST to login users and now IE 10 is aborting the connection and saying: SCRIPT7002: XMLHttpRequest: Network Error 0x2f7d, Could not complete the operation due to error 00002f7d. Here are all the details I have IE version 10.0.9.16618, update version 10.0.6. I've also reproduced this on IE version 10.0.9200.16635, update version 10.0.7. The domain is using HTTPS. The problem doesn't occur on HTTP connections I've read that for some reason

Alternatives to F12 Developer tools in Internet Explorer 10 Metro?

萝らか妹 提交于 2019-12-31 22:22:10
问题 I'm testing our JavaScript-heavy web application on Windows 8. For what it seems, IE10 on desktop works just fine. However, the Metro UI version for IE10 seems to break our application. My question is this: is there a way to debug web applications on IE10 Metro? For what I know, F12 developer tools are not available. 回答1: The rendering/ JS Engine in IE10 Desktop and IE10 should be identical. Does your app use any Add-ins (for things like cut and paste support?) As far as I am aware taking

Using CredEnumerate to pull WebCredentials

☆樱花仙子☆ 提交于 2019-12-31 04:13:11
问题 As part of a password management tool, I am attempting to enumerate IE 10 web site usernames (i.e., auto-complete usernames) by using CredEnumerate . When I call CredEnumerate , it yields several usernames (generic usernames and domain usernames) from within the "Windows Credentials" section of the "Credential Manager", but does not include anything from the "Web Credentials" section of the Credential Manager (Control Panel\User Accounts and Family Safety\Credential Manager). private static

Is it possible to disable tooltips for links?

与世无争的帅哥 提交于 2019-12-30 13:23:42
问题 I don't have any title or alt tags set on my links so IE10 uses the href content for tooltips when I hover or click and hold a link. I've been looking around but I can't find any solutions for overriding this functionality. Update: I've figured a solution for another problem I've had. When you touched and held, a weird square would pop up. To fix that I used this line of code. document.addEventListener("MSHoldVisual", function(e) { e.preventDefault(); }, false); I'm still trying to find a

Is it possible to disable tooltips for links?

≯℡__Kan透↙ 提交于 2019-12-30 13:22:12
问题 I don't have any title or alt tags set on my links so IE10 uses the href content for tooltips when I hover or click and hold a link. I've been looking around but I can't find any solutions for overriding this functionality. Update: I've figured a solution for another problem I've had. When you touched and held, a weird square would pop up. To fix that I used this line of code. document.addEventListener("MSHoldVisual", function(e) { e.preventDefault(); }, false); I'm still trying to find a

IE10, 11 CDATA with hyphens parsed wrong

亡梦爱人 提交于 2019-12-30 07:03:56
问题 I experienced such problem: when trying to parse xml that I receive from server, messages contained in CDATA blocks are parsed in IE10, 11 till first hyphens found. See example of XML that I received: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <response> <task>results</task> <finish_msg><![CDATA[ <div class="jq_results_container_outer"> <div class="jq-msg-alert-0"> </div> </div><br />]]> </finish_msg> </response> And when I called such Javascript code in IE 10, 11 var data =

How can I detect IE10 from JS when browser mode is IE9?

梦想与她 提交于 2019-12-30 06:42:36
问题 I need to detect with just plain javascript (no frameworks) when the browser is IE10 despite the browser mode setting. Some comments: - I do need to detect the browser, it isn't an option to detect just features since the purpose is mitigating a browser bug. - I have tried the common ways (like UA string or feature detection) with no success, when I switch browser mode to IE9 every aspect that could suggest being in IE10 just vanishes. 回答1: If you want to detect the browser you're working