internet-explorer-10

SVG line markers not updating when line moves in IE10?

纵然是瞬间 提交于 2019-11-26 19:52:58
问题 I have some SVG lines with line markers on them, and I have a script that moves those lines around. This works fine on all browsers, including IE9. However, I just tried it on IE10, and the line markers get left behind when the line moves. An example of this can be seen here: http://jsfiddle.net/swYRK/8/ I have tried this on both Windows 7 and 8. Anyone know what's going on? Is this an IE10 bug, or is there another way to move the line and markers? (Note the actual application is very

Why is IE 10 Refusing to send POST data via jQuery $.ajax

孤人 提交于 2019-11-26 19:52:05
问题 Both in my development and production environment, IE 10 is refusing to send any POST data via a simple $.ajax call. My script looks like this: d = 'testvar=something'; $.ajax({ data: d, success: function(h){ console.log(h); } }); The actual ajax request is going through, but no post data??? The request headers look normal: Request POST /steps/~do HTTP/1.1 Accept */* Content-Type application/x-www-form-urlencoded; charset=UTF-8 X-Requested-With XMLHttpRequest Referer http://localhost:8080

Force IE10 to run in IE10 Compatibility View?

眉间皱痕 提交于 2019-11-26 19:43:04
问题 I have an app that is broke in IE10 but runs fine in IE10 Compatibility View. A quick google results in the <meta http-equiv="X-UA-Compatible" content="IE=8"> <!-- plus variations such as emulate, quirks, 7, 8, 9 ---> tag. Some MS documentation on the tag is here. If you press F12 you can see that it changes the document mode. I need it to change the Browser Mode to Internet Explorer 10 Compatibility View. Is there any tag that will do this? UPDATE I need to mention that I have tried all of

Is cross-origin postMessage broken in IE10?

≯℡__Kan透↙ 提交于 2019-11-26 19:33:26
I'm trying to make a trivial postMessage example work... in IE10 between windows/tabs (vs. iframes) across origins Remove any one of these conditions, and things work fine :-) But as far as I can tell, between-window postMessage only appears to work in IE10 when both windows share an origin. (Well, in fact -- and weirdly -- the behavior is slightly more permissive than that: two different origins that share a host seem to work, too). Is this a documented bug? Any workarounds or other advice? (Note: This question touches on the issues, but its answer is about IE8 and IE9 -- not 10) More details

How can I disable the clear button that IE10 inserts into textboxes?

余生长醉 提交于 2019-11-26 19:22:33
问题 How can I disable the new functionality in Internet Explorer 10 that shows a little 'x' in a textbox when it's focused and I have content in it? 回答1: input[type=text]::-ms-clear { display: none; } 回答2: In IE 10+ , text inputs (input[type=text]) show a (x) button on the right-side on the field once you start typing, it's used to clear/remove the entered text value. In Chrome , search inputs (input[type=search]) show a similar button. If you prefer to remove either of them for IE10+ and/or

Check for IE 10 [duplicate]

你。 提交于 2019-11-26 19:14:46
问题 This question already has an answer here: How do I target only Internet Explorer 10 for certain situations like Internet Explorer-specific CSS or Internet Explorer-specific JavaScript code? 25 answers How can I make a message box appear on page load if the user is using IE 10? function ieMessage() { alert("Hello you are using I.E.10"); } My webpage is a JSF facelet (XHTML). 回答1: The real way to detect this, without conditional comments and without User Agent sniffing is with conditional

ie10 and flexboxes? (nightmare)

梦想与她 提交于 2019-11-26 19:06:49
问题 Unfortunately, I have to make my website code compatible with Internet Explorer 10 and am having some issues, even after reading the documentation on their official website here is my css code: .uberflex { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start; display: -webkit-flex; -webkit-flex-flow: column wrap; -webkit-justify-content: flex-start; -webkit-align-items: flex-start; display: -ms-flexbox; -ms-flex-flow: column wrap; -ms

internet explorer 10 - how to apply grayscale filter?

南楼画角 提交于 2019-11-26 18:44:48
This CSS code works pretty nice for Internet Explorer until 9. img.gray { filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); filter: gray; -webkit-filter: grayscale(1); } But what do I need to do for Internet Explorer 10 ? IE10 does not support DX filters as IE9 and earlier have done, nor does it support a prefixed version of the greyscale filter. However, you can use an SVG overlay in

IE10/IE11 Abort Post Ajax Request After Clearing Cache with error “Network Error 0x2ef3”

好久不见. 提交于 2019-11-26 18:15:07
问题 SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3 No valid solution at the moment. Update: Noticed on IE11 also. After more and more investigation, I come with this results: The problem is specific to my application, it does not happen on facebook. The problem has nothing to do with max number of requests per host (I did sample page that flood the server, IE10 is able to handle up to 8-10 req at the same time, inside my application I also

Why is backface-visibility hidden not working in IE10 when perspective is applied to parent elements?

社会主义新天地 提交于 2019-11-26 17:31:26
问题 Ok, so here's another IE10 glitch. The problem is that applying perspective on parent elements breaks the backface-visibility hidden setting. Please see this fiddle: http://jsfiddle.net/2y4eA When you hover over the red square it rotates by 180° on the x-axis, and even though the backface-visibility is set to hidden, the backface is shown, at least until the 180° is reached, then it disappears. Remove the perspective property, and you'll see that it works as expected, the backface isn't