internet-explorer-10

VideoJS in IE10 shows green video

自作多情 提交于 2019-12-12 18:24:56
问题 has anyone experienced the thing that when you visit the videoJS Homepage in IE10 and the browser does NOT run in compatibility mode, the video renders green? In compatibility mode it works, except for the play button, that doesn't show up properly. Does anybody has the same effect? Any idea why that happens with an mp4 video? See secreenshot here: http://www.gojo-agentur.de/js-green.png 来源: https://stackoverflow.com/questions/17880189/videojs-in-ie10-shows-green-video

Angular UI Bootstrap progress bar in IE10

半城伤御伤魂 提交于 2019-12-12 16:35:33
问题 I'm using Angular UI Bootstrap to display a progress bar. After having problems with my site in IE, I looked with IE at the Angular UI Bootstrap website and noticed the following: The progress bars DO NOT WORK in IE10 The progress bars WORK, when I switch to IE9 Browser Mode using the developer tools Since this seems very strange to me that the newer version breaks the progress bars, I thought I ask here. Is this problem known, or is some strange browser setting of mine causing this? Is there

asp .net Validation not working in IE 10

拈花ヽ惹草 提交于 2019-12-12 15:31:14
问题 Has anyone come across this issue? I have required field validation on a form that I have tested and know works in IE 7-9, Firefox and Chrome but in IE 10 it allows the form to submit without doing any validation. The site is in .Net 3.5. I have done some research online but I can't find anything about this. 回答1: Most probably support.microsoft.com/kb/2608565. Which means that your old browser capabilities settings incorrectly recognize ie10 as a browser which doesn't support javascript

Why doesn't this CSS animation work in IE10?

和自甴很熟 提交于 2019-12-12 14:51:50
问题 This JSFiddle contains a CSS animation that works for me in Chrome, Firefox and Safari, but not IE 10. I know IE 10 doesn't need the -ms- prefix, so that can't be it. I can't see anything wrong with this: @keyframes snapVertical { 0% { background-position: 0 0; } 16% { background-position: 0 0; } 21% { background-position: 0 -136px; } 37% { background-position: 0 -136px; } 42% { background-position: 0 -272px; } 58% { background-position: 0 -272px; } 63% { background-position: 0 -136px; } 79%

Why IE10 fires beforeunload event when clicking on anchor element with javascript href and how to prevent it

隐身守侯 提交于 2019-12-12 12:18:48
问题 In order to track when user leaves the page, we listen to beforeunload event. Everything works fine until user, that uses IE10 , clicks on empty link (anchor) with javascript in href parameter instead of url. For example: <a href="javascript:void(0)">Empty link with JS in href</a> This case makes IE10 sometimes fire beforeunload event. Chrome/IE11 work fine (0 beforeunload s), while IE10 fires it from time to time, especially if you click it fast. Here is JSFiddle to try it. Does anyone know

Could not complete the operation due to error 800a025e

别来无恙 提交于 2019-12-12 08:39:39
问题 What does this error mean in IE10/11: Error: Could not complete the operation due to error 800a025e. And how would I debug it? It says its this line: this.nativeSelection.removeAllRanges(); https://code.google.com/p/rangy/source/browse/trunk/src/js/core/wrappedselection.js#416 See it in action here: http://panmedia.github.io/raptor-editor/tests/cases/selection/selection-expand.html 回答1: I had this error coming up recently, I fixed it with the following chceck: var sel = window.document

ie10 stylesheet

主宰稳场 提交于 2019-12-12 08:01:15
问题 I'm trying to link to IE10 with an external style sheet but its not working properly. whats happening is IE10 is using the same style sheet as the other browsers. i have attached different stylesheets for IE 9 and 8 and those are fine. i even tried to have a style sheet for the other browsers but IE 10 seems to think its one of the other browsers. <!--[if lt IE 10]> <link rel="stylesheet" type="text/css" href="ie10.css" /> <![endif]--> 回答1: [if gt IE 9] for 'greather than' 9 explained here :

How to remove default file input style on IE10?

↘锁芯ラ 提交于 2019-12-12 07:41:28
问题 Here is my file input on different browsers. IE10 uses an horrible default style. Any idea about how to remove it? 回答1: 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. 回答2: Use a reset CSS template (example: http://meyerweb.com/eric/tools/css/reset/) And then style it yourself with your own CSS. 来源: https:/

How blur (focus lost) the image after insertion with execCommand in IE10?

↘锁芯ラ 提交于 2019-12-12 05:28:10
问题 I have a content editable DIV such as: <div contenteditable='true' id='myRichTextBox'></div> In addition, I have a button that inserts an image into the mentioned DIV . Once the image inserted it has focused with resizable handlers. How I can lose it's focus and bring back the focus to the content editable DIV ? <button type='button' onclick='insertImage()'>Insert an image</button> Javascript code: function insertImage() { document.execCommand('insertImage',false,'myImage.png'); } Thanks for

How do I target only Internet Explorer 10 for certain situations like Internet Explorer-specific CSS or Internet Explorer-specific JavaScript code?

安稳与你 提交于 2019-12-12 05:24:45
问题 How do I target only Internet Explorer 10 for certain situations like Internet Explorer-specific CSS or Internet Explorer-specific JavaScript code? I tried this, but it doesn't work: <!--[if IE 10]> <html class="no-js ie10" lang="en"> <![endif]--> <!--[if !IE]><!--> <html lang="en" class="no-js"> <!--<![endif]--> Internet Explorer 10 ignores the conditional comments and uses the <html lang="en" class="no-js"> instead of <html class="no-js ie10" lang="en"> . 回答1: Perhaps you can try some