internet-explorer-11

Cursor not functioning correctly in IE11 select inputs

谁说我不能喝 提交于 2019-12-07 11:38:44
问题 Please see fiddle: http://jsfiddle.net/ajjp/b7M2H/ <div> <select> <option> Option 1 </option> <option> Option 2 </option> <option> Option 3 </option> <option> Option 4 </option> <option> Option 5 </option> <option> Option 6 </option> <option> Option 7 </option> </select> </div> <div> <input> </input> </div> In Internet Explorer 11 the cursor property changes when hovering over a select option that is over the input beneath. Hoping there is a simple CSS solution. 回答1: It's an IE bug that seems

Wrapping flex items in IE11 is broken

旧巷老猫 提交于 2019-12-07 09:44:16
问题 I am trying to build a form layout with the capabilities of the new CSS3 Flexbox. The goal is that the elements of a fieldset arrange themselves properly, while you change the number of elements in a fieldset, change the font-size, or change the view size. The form layout should work in all modern browsers: Chrome 35, Firefox 29 and IE 11 It looks very promising except that it does not work in IE 11. I simplified the code and post it on http://jsfiddle.net/T4RL6/. Here view looks correct like

IE11 hangs during file upload with AjaxFileUpload

爷,独闯天下 提交于 2019-12-07 08:50:57
问题 Strange problem appeared with IE11 few days ago. The plugin, wich worked good (https://github.com/davgothic/AjaxFileUpload) now doesn't want to. After I choose a file and click "Load" IE deathly hangs. Only kill process helps. I looked into deep jQuery code for posting data and can't find where to put breakpoint before it hangs. The submitting data is ok, file recieved on server and handler correctly worked, it returns the XML with some info. But no more events (such as "ajaxComplete") called

Rendering Bugs IE11 in Windows 7

守給你的承諾、 提交于 2019-12-07 06:56:28
I have had several problems with rendering documents with images in IE11 and Windows 7. Swtiching browsers is not an option for me. If I try to use some openlayers tools, the IE11 freezes. If I put altRows=true in a JQGrid, scrolling won't work properly. I guess this is due to the different background images in each row of the grid. The problems disappear if: I use the same version of browser in windows 8 or higher. I use older versions of IE or if I use IE 11 in compatibility mode. I have tried to execute IE without add-ons, as well as disabling the rendering by gpu. Moreover, I have tried to

Content Security Policy does not work in Internet Explorer 11

喜夏-厌秋 提交于 2019-12-07 04:11:41
问题 In my asp.net core application for each response i'm adding content security policy header. I understand that for IE, the header name is X-Content-Security-Policy and for other browsers like chrome its Content-Security-Policy The header value looks something like below where nonce is different for each response. default-src 'none'; script-src 'self' 'nonce-somerandomvalue-differnt-foreach-reasone' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'; object

document.cookie is still accessible on IE11, even though cookies are disabled

不问归期 提交于 2019-12-07 04:11:33
问题 Using IE11, I can display the content of all cookies, write out a cookie, find it, and delete it using JavaScript, even though I have my Privacy set to "Block All Cookies". (And actually, no matter what version I set my IE emulation to, the document.cookie still works.) It works as it should on Chrome with cookies disabled - i.e. document.cookie returns empty/nothing when I try to reference it in the same JavaScript. I'm trying to detect whether the user has cookies turned off in their IE.

How to prevent IE11 pop up (Are you sure you want to leave this page)

梦想与她 提交于 2019-12-07 04:08:36
问题 I am working on a page that I have nothing to type but a dropdown to select, but in IE11 when I try to move on to the next page, it will pop up the message. I would like to prevent this pop up from happening. So I just wonder what is the default behavior of that pop up in IE11(As it does not appear in either Chrome or Firefox) and how to prevent the pop up 回答1: A more important question to ask is: "Why IE11 is popping up that alert?". Are you leaving a secure page for an insecure one? I.e.

XSLT processing on IE11?

僤鯓⒐⒋嵵緔 提交于 2019-12-07 03:53:58
问题 What has happened to the XSLT processing in IE11? On IE8/9/10, you can use: if (window.ActiveXObject) { var xslt = new ActiveXObject("Msxml2.XSLTemplate"); .... } On Chrome/Firefox/Safari, you can use: else { var xsltProcessor = new XSLTProcessor(); } But on IE11, neither of these are supported. Does anyone know how this can be accomplished? 回答1: Try if (window.ActiveXObject || "ActiveXObject" in window) This worked for me working with IE11 and allowed me to instantiate ActiveX objects since

window.open() returns null in IE11 if opening

两盒软妹~` 提交于 2019-12-07 03:32:26
问题 In IE on Windows 10 with default settings, if I perform a window.open() against an external internet site from a page on my local machine or a server on my local network, I get null . See my repro below. This doesn't happen in IE on Windows 7 or Google Chrome. Interestingly, if I turn on "Enable Protected Mode" for the Intranet Zone (so that Protected Mode are the same in the Intranet Zone and Internet Zone), then the problem goes away. However, I need this to work without requiring users to

script.readyState is undefined in IE11 & FF

会有一股神秘感。 提交于 2019-12-07 02:13:27
I just worked on a dynamic script loader which works fine in IE9 but not in IE11 and not in FF. Here is my code: function getResourceScript(filename) { var script = document.createElement('script'); script.setAttribute('src', mShuttlePath + "scripts/" + filename); script.setAttribute('type', 'text/javascript'); script.setAttribute('language', 'javascript'); document.getElementsByTagName('head')[0].appendChild(script); } function documentLoadInit() { if (document.readyState == 'complete') { // check if all scripts are loaded for (var n = 0; n < document.scripts.length; n++) { if (document