internet-explorer-10

Angular doesn’t support input type=”range” in IE10

蹲街弑〆低调 提交于 2019-12-01 07:04:39
问题 When the value of an HTML5 <input type=”range”> element is changed in Chrome or Safari, angular detects the change. But in IE10 (on Windows 8, Windows Server 2012 and Windows Phone 8) the change seems to be ignored in both Angular v1.0.6 and v1.1.4. Firefox 20.0.1 doesn’t support this input type. Try these two (third-party authored) fiddles to see what I mean: http://jsfiddle.net/fRgtF/, http://jsfiddle.net/mrajcok/nBd86/. I can imagine a couple of quick fixes but as I’ll be using this is in

Dynamically submitting a file upload form in IE10 using jQuery

﹥>﹥吖頭↗ 提交于 2019-12-01 06:11:54
问题 I have a form whose only purpose is to upload files, but for user experience reasons, I need a nice-looking button that: loads the file dialog auto-submits the form when a file has been selected The original solution was something like this JSFiddle, where you have a link that loads the file dialog, then listens for the dialog's change event to auto-submit the form: $("input[type=file]").on("change", function () { // auto-submit form $("form").submit(); }); $("#my-nice-looking-button").on(

IE10 Select box menu shows upside

十年热恋 提交于 2019-12-01 05:23:57
问题 I was testing my application in IE10 and found a strange behavior for select box. The option selected is highlighted and options above/below are displayed above/below the selected one. This happens only in IE10. <!DOCTYPE html> <html> <body> <select> <option value="One">One</option> <option value="Two">Two</option> <option value="Three">Three</option> <option value="Four">Four</option> </select> </body> </html> How to fix this?? Thanks in Advance. 回答1: This is the default behavior of select

“Error: Unsupported audio type or invalid file path” for HTML5 Audio tag in Internet Explorer 10

自闭症网瘾萝莉.ら 提交于 2019-12-01 04:46:01
I have the following html5 document with audio tag and a fallback to Flash for browsers that don't support it: <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> </head> <body> <audio autoplay controls preload="auto" autobuffer> <source src="trumpet.ogg" type="audio/ogg"> <source src="trumpet.mp3" type="audio/mp3"> <source src="trumpet.wav" type="audio/wav"> <source src="trumpet.m4a" type="audio/aac"> <!-- Flash fallback --> <object width="1" height="1" type="application/x-shockwave-flash" data="player.swf"> <param name="movie" value="player.swf">

Storage limit for indexeddb on IE10

自古美人都是妖i 提交于 2019-12-01 04:19:48
We are building a web-app that store lots of files as blobs with indexedDB. If the user uses our app at its maximum, we could store as much as 15GB of file in indexeddb. We ran into a problem with IE10, that I strongly suspect is a quota issue. After having successfully saved some files, a new call to store.put(data, key); will never ends. Basically, the function will be called, but no success event nor error event will be called. If I look into the IndexedDB folder of IE 10 I'll see a handfull of what looks like temporary files (of 512 kB each) getting created and removed indefinitely. When

Border-radius causes weird behaviour in IE9, IE10 and IE11

北战南征 提交于 2019-12-01 03:52:46
问题 This Fiddle produces expected results in real browsers (I tried FF, GC, Safari), but breaks unexpectedly in IE9, IE10 and IE11. No problems with IE7 or IE8. <div class="root"> Top <div class="footer">Bottom</div> </div> .root { background-color: red; position: absolute; height: auto; bottom: 0; top: 0; left: 0; right: 0; margin: 25px; border: 0; border-radius: 7px; overflow: hidden; } .footer { background-color: green; position: fixed; left: 0; bottom: 0; width: 100%; height: 100px; } If I

IE10 find first button on page and trigger click event on input submit

与世无争的帅哥 提交于 2019-12-01 03:40:10
sorry about title, i know its messy but i dont know how can i describe this situation. we have an input field. but no form element. here is the code <input name="search" id="search" onkeypress="SearchBox(this.value);" type="text" value="Search"/> <input name="searchbutton" align="left" class="okbutton" id="searchbutton" onclick="SearchBox(search.value);" type="button"/> SearchBox function checking keycode and if it is 13 (enter button charcode) sending search request. this code works in IE8/9 but in IE10 have interesting behaviour. above code middle of the page. and we have a button element

IE + overflow: hidden

会有一股神秘感。 提交于 2019-12-01 03:20:52
I don't know is that an issue or bug, but when I use overflow: hidden , selecting the text and moving the cursor to the page bottom in IE, the page is scrolling (I tried IE9-IE11)! When I use Firefox/Opera/Chrome/Safari the page isn't scrolling... I have to use overflow: hidden , but it has an odd behavior in IE. So, my question is: how can I avoid page scrolling in IE? Use -ms-scroll-limit: 0 0 0 0; to prevent any scrolling whatsoever in IE 10+. For older browsers you can write a workaround using JavaScript. Example of CSS and JavaScript: body { overflow: hidden; -ms-scroll-limit: 0 0 0 0; }

AngularJS on IE10+ ,textarea with placeholder cause “Invalid argument.”

淺唱寂寞╮ 提交于 2019-12-01 02:10:50
I'm getting " Invalid argument " when using angularJS ,TextArea with placeholder, on IE10+. This will ONLY happen when the textarea node is closed with </textarea> and will not happen when I close the textarea now on itself. This will raise the "Invalid argument" exception: <div ng-app> <input ng-model="placeholderModel" type="text"/> <textarea id="message" placeholder="{{placeholderModel}}" ng-model="textareaModel"></textarea> </div> This will work with no problems: <div ng-app> <input ng-model="placeholderModel" type="text"/> <textarea id="message" placeholder="{{placeholderModel}}" ng-model

“Error: Unsupported audio type or invalid file path” for HTML5 Audio tag in Internet Explorer 10

强颜欢笑 提交于 2019-12-01 01:27:03
问题 I have the following html5 document with audio tag and a fallback to Flash for browsers that don't support it: <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> </head> <body> <audio autoplay controls preload="auto" autobuffer> <source src="trumpet.ogg" type="audio/ogg"> <source src="trumpet.mp3" type="audio/mp3"> <source src="trumpet.wav" type="audio/wav"> <source src="trumpet.m4a" type="audio/aac"> <!-- Flash fallback --> <object width="1" height=