internet-explorer-10

SEC7118: XMLHttpRequest CORS - IE Console message

只谈情不闲聊 提交于 2019-12-03 16:17:01
问题 I am using CORS POST request with everything taken care as given @http://www.html5rocks.com/en/tutorials/cors/ Server sets Response header to: 'Access-Control-Allow-Origin':'*' and I can see this header value in IE developer tool. But on IE10 browser I see console message as "SEC7118: XMLHttpRequest for http:// required Cross Origin Resource Sharing (CORS). When I check on Microsoft site it has below given explanation. http://msdn.microsoft.com/en-us/ie/dn423949(v=vs.94).aspx SEC7118

IE10 d3.v3.js error: Unable to get property 'prototype' of undefined or null reference

筅森魡賤 提交于 2019-12-03 15:14:55
问题 My page is loading perfectly in IE9, Safari, Chrome & Firefox. But when it coems to IE10 , it throws error : Unable to get property 'prototype' of undefined or null reference in d3.v3.js at line : d3_window.CSSStyleDeclaration.prototype. try { d3_document.createElement("div").style.setProperty("opacity", 0, ""); } catch (error) { var d3_style_prototype = d3_window.CSSStyleDeclaration.prototype, d3_style_setProperty = d3_style_prototype.setProperty; d3_style_prototype.setProperty = function

Frameset + cols IE10

别说谁变了你拦得住时间么 提交于 2019-12-03 13:25:45
I was testing some scripts in IE10, seems that the browser has problems in setting attribute cols . Example: parent.middle.document.getElementById("middle_frames").cols = "0,*" This works perfect for SAF/Chrome/FF/IE7/IE8/IE9, but in IE10 it doesn't work. Anyone with some help? I can't show my problem in my project, but I made a dummy script to show you the problem. Make 3 files (these below) and run them in IE10 and click the button "change cols". Works perfect for every browser except IE10. In my example you see I used a doctype, tried also without a doctype, same problem. frameset_main.html

IE 9 and 10 box-shadow on resizing element

£可爱£侵袭症+ 提交于 2019-12-03 13:18:14
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 the inside part of the element. The box-shadow will still be rendered at the bottom of the resized

Using javascript to set cookie in IE

半城伤御伤魂 提交于 2019-12-03 13:07:41
document.cookie= "cookiename=cookievalue; expires=Mon,12Jun2015:00:00:00; path=/;" I run this script on my Internet Explorer 10 but it doesn't share cookie between 2 IE tab. But when i remove the "expires" properties so it seem to working : document.cookie= "cookiename=cookievalue ;path=/;" But i don't want to remove the "expires" properties. So how to resolve this problem ? I have used this code since mid '90s - it has worked in all browsers on all platforms so far Include the file and use setCookie("name","value",expiryDate,"/"); // cookie.js file var cookieToday = new Date(); var expiryDate

MSIE 10, web font and font-feature-settings causes invisible text

谁都会走 提交于 2019-12-03 12:48:17
I think this is really a bug in Microsoft Internet Explorer 10 but I could not find any explanation of the issue anywhere. A live demo of problem can be found at http://jsfiddle.net/37Bu5/ and here's the code: <html><head> <style> @import url("https://fonts.googleapis.com/css?family=Open+Sans:400"); .withkerning { font-family: "Open Sans"; font-feature-settings: "kern" 1; } </style> </head><body> <p>Here`s some example text 1.</p> <p class="withkerning">Here`s some example text 2.</p> </body></html> The problem is that the paragraph with class withkerning is totally invisible. I would like to

Running ie10, ie11 at same time for testing?

喜欢而已 提交于 2019-12-03 12:33:13
I recently installed ie11 on my Windows7 machine and do browser testing for all versions of ie on it in the document. I also do tests on Browserstack. I have client now that INSISTS I test on ie10 directly. As you know, Windows won't let you run multiple version if ie, un-install ie directly, or reinstall an older version when a newer version is already installed. I don't want to have to uninstall/reinstall ie11, reinstall/install ie10. Is there a work around where I can run both version without have to uninstall one or the other? On modern.ie you can find free virtual machines for every

Why does IE10 require the presence of a p:hover {} rule for transitions to work on a pseudo element?

走远了吗. 提交于 2019-12-03 11:52:50
HTML: <p>Hover</p> CSS: p::after { content: " here"; transition: all 1s; } p:hover::after { font-size: 200%; color: red; } Live demo: http://jsfiddle.net/SPHzj/13/ (works in Firefox and Chrome) As you can see, I've set up CSS transitions on the ::after pseudo-element of the paragraph. Then, when the paragraph is hovered, two new styles apply for the pseudo-element which are transitioned. This works in Firefox and Chrome, but not in IE10. My reasoning was that IE doesn't understand the p:hover::after selector, as it works in IE if you set the hover on an ancestor element, e.g. div:hover p:

How to remove default file input style on IE10?

六眼飞鱼酱① 提交于 2019-12-03 10:07:11
Here is my file input on different browsers. IE10 uses an horrible default style. Any idea about how to remove it? IE supports a number of pseudo elements for file inputs: ::-ms-value for styling the part where the text is displayed ::-ms-browse for styling the button Using these you can style both parts of the file input however you wish. Use a reset CSS template (example: http://meyerweb.com/eric/tools/css/reset/ ) And then style it yourself with your own CSS. 来源: https://stackoverflow.com/questions/17618952/how-to-remove-default-file-input-style-on-ie10

Vertical text in IE7, IE8, IE9, and IE10 with CSS only

旧巷老猫 提交于 2019-12-03 07:30:32
问题 Does anyone know how to successfully implement vertical text in IE7, IE8, IE9, and IE10 with CSS only? (by vertical text, I'm referring to text being rotated counterclockwise 90 degrees) This is what I have implemented today, which I think should be correct: .counterclockwise-text { /* Chrome/Safari */ -webkit-transform: rotate(-90deg); -webkit-transform-origin: 50% 50%; /* Firefox */ -moz-transform: rotate(-90deg); -moz-transform-origin: 50% 50%; /* IE9 */ -ms-transform: rotate(-90deg); -ms