internet-explorer-10

XmlHttpRequest status 0 instead of 401 in IE 10

混江龙づ霸主 提交于 2019-11-28 07:33:42
I have hit a wall with this issue. I guess it is some kind of IE bug but I want to be sure. So the question is. Why does IE10 XmlHttpRequest.status returns 0 instead of 401? var xmlhttp=new XMLHttpRequest(); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { document.getElementById("rescode").innerHTML="Request completed with status: "+xmlhttp.status; } } xmlhttp.open("GET","http://hosting.gregy.cz/cors/",true); xmlhttp.send(); See plunker here: http://plnkr.co/edit/E2lCflPDHHaQi7t79IeM?p=preview This code fires a CORS request which always returns 401. Firefox and chrome

CORS doesn't work with cookies in IE10

余生颓废 提交于 2019-11-28 07:32:43
问题 I have GWT application that uses CORS and sets cookies. It works fine in Chrome, Firefox, Opera, but in IE10 (Version 10.0.9200.16521) I get this error: SCRIPT5022: com.google.gwt.core.client.JavaScriptException: (InvalidStateError) code: 11 ABORT_ERR: 20 DATA_CLONE_ERR: 25 DOMSTRING_SIZE_ERR: 2 HIERARCHY_REQUEST_ERR: 3 INDEX_SIZE_ERR: 1 INUSE_ATTRIBUTE_ERR: 10 INVALID_ACCESS_ERR: 15 INVALID_CHARACTER_ERR: 5 INVALID_MODIFICATION_ERR: 13 INVALID_NODE_TYPE_ERR: 24 INVALID_STATE_ERR: 11

IE10 sending image button click coordinates with decimals (floating point values) causing a ParseInt32 FormatException

那年仲夏 提交于 2019-11-28 05:21:53
It seems like ASP.NET 4.0 is not prepared to handle ImageButton events triggered by Internet Explorer 10. The problem is that IE10 sends the image click coordinates as double values (with decimals), and ASP.NET tries to parse them as integers, presenting the following type of error: System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.FormatException: Input string was not in a correct format. at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal

Is there a bug in Internet Explorer 9/10 with innerHTML=“”?

China☆狼群 提交于 2019-11-28 03:47:50
问题 I often use the following code to clear the content of an element : div.innerHTML = ""; But I found a stange behaviour on Internet Explorer. It seems that all children of the div get their own children removed too! If I keep a reference to a child of the div above, after doing div.innerHTML = ""; , the child's text node is no longer in the child. The following code is the proof of this behaviour (http://jsfiddle.net/Laudp273/): function createText() { var e = document.createElement("div"); e

Internet Explorer 10 Windows 8 Remove Text Input and Password Action Icons

落爺英雄遲暮 提交于 2019-11-28 03:38:28
I am testing a highly-customized web application in Internet Explorer 10 on Windows 8, since it is an up and coming release, and will likely be using my application some day. Take a look at this sample screenshot of some text input controls from the application: Is there a way, either within HTML or CSS, to remove the action icons that are located to the right of the text and password input controls? Thank you for your time. i_am_jorf You need to use the -ms-clear pseudo-element . And use -ms-reveal for the password box. This should do it: ::-ms-clear { display: none; } Emre You should instead

Removing the IE10 Select Element Arrow

折月煮酒 提交于 2019-11-28 03:31:54
So, with Mozilla and WebKit I have a half-decent solution replacing the arrow on the select box using appearance: none; and having a parent element. In IE for the most part I disabled this feature. For IE10 I can't actually disable it since my conditional comments don't actually work. Here is my markup: <!--[if lt IE 7 ]> <html class="ie6"> <![endif]--> <!--[if IE 7 ]> <html class="ie7"> <![endif]--> <!--[if IE 8 ]> <html class="ie8"> <![endif]--> <!--[if IE 9 ]> <html class="ie9"> <![endif]--> <!--[if (gt IE 9)]> <html class="ie10plus"> <![endif]--> <!--[if !(IE)]><!--> <html> <!--<![endif]--

Internet Explorer Preserve 3D fix

醉酒当歌 提交于 2019-11-28 03:18:06
问题 The following code works in all browsers except for IE.10. MSDN website says the following (which I do not understand how to apply): Note The W3C specification defines a keyword value of preserve-3d for this property, which indicates that flattening is not performed. At this time, Internet Explorer 10 does not support the preserve-3d keyword. You can work around this by manually applying the parent element's transform to each of the child elements in addition to the child element's normal

session storage not working in IE

点点圈 提交于 2019-11-28 00:46:48
问题 I am using the following code to test session storage of HTML 5.. It is working fine in all the browser except IE. The IE version installed is 10. Code : <!DOCTYPE html> <html> <head> <script> function clickCounter() { if(typeof(Storage)!=="undefined") { if (sessionStorage.clickcount) { sessionStorage.clickcount=Number(sessionStorage.clickcount)+1; } else { sessionStorage.clickcount=1; } document.getElementById("result").innerHTML="You have clicked the button " + sessionStorage.clickcount + "

How to recreate perspective-origin effect by transforming child elements?

☆樱花仙子☆ 提交于 2019-11-28 00:19:23
So after struggeling with IE glitches and incompatibilities , I've finally got my correctly sized cuboid working ( update: here's an example of it). Animating requires to animate all sides separately instead of a single parent element, however this seems to be the only way to get it working in IE. Using a single cuboid works fine, multiple cuboids however are problematic, since perspective is applied to the single transformed elements (which is necessary in order to work in IE) they do all look the same, regardless of their position on the stage: http://jsfiddle.net/YsPmm/ If perspective would

How to remove clear button ( 'X' button ) from IE10 textboxes in compatibility mode?

坚强是说给别人听的谎言 提交于 2019-11-28 00:02:02
问题 Currently I am working on a website which is using meta tag to render the page in IE9 mode [ BrowserMode: IE10, DocMode: IE9 Standards ] <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7, IE=9" /> In IE10 lots of CSS breaks in the page, so using IE=Edge is not a viable solution as of now ( may be in future this will be used once all the css is fixed, but I don't see this near future ). Now, the point is all of the textbox have clear button in it. In just one of the textbox we don't