internet-explorer-10

What can prevent IE10 from accepting multiple file uploads

雨燕双飞 提交于 2019-12-11 13:09:21
问题 I am running IE10, and attemping to enable multiple file uploads from a single html input. I have gone back to absolute basics, and used example code from w3schoools to test the functionality. If I go here: http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_multiple and click browse, I am able to select multiple files. If I copy all of the code and paste into an empty html document on my internal webserver, and navigate to that page, I can not select multiple files. Is there some

Display table-cell on pseudo element in IE11

寵の児 提交于 2019-12-11 11:51:05
问题 Running into an interseting issue with IE11 and IE10. I have a list using a check icon before each item. On mobile we want the check's position to maintain next to text in that the text does not warp beneath the check. I've executed this by using display:table-cell on the pseudo element that contains the check icon. However, when using table-cell in IE11 it doesn't display at all. I've been able to narrow it down to that display property through testing. I've given a height and width but

IE10 and Modal Popup Extender always visible

吃可爱长大的小学妹 提交于 2019-12-11 07:41:55
问题 It seems that my Modal Popup Extenders are always visible when using IE10. <ajx:ModalPopupExtender runat="server" ID="mpeNewTest" PopupControlID="pnlTest" TargetControlID="btnNew" DropShadow="true" BackgroundCssClass="modalBackground" /> <asp:Panel runat="server" ID="pnlTest" CssClass="ModalWindow" ScrollBars="Auto"> <!--Stuff here --> </asp:Panel> Is there something that is missing? I've looked online and no one seems to have this problem. The CSS is simple: .ModalWindow {border: solid 1px

SVG zoom issue in IE10 (expand more than SVG size)

风格不统一 提交于 2019-12-11 04:36:11
问题 Making map with d3.js with zoom option like here: http://bl.ocks.org/mbostock/4699541. While testing in IE10 found that map expands to whole page when it is zoomed. I tried to add extra <div> , but it didn't work. Any idea how to fix this? Now I have such code: var mapWidth = 500, mapHeight = 260; var projection = d3.geo.albersUsa() .scale(550) .translate([mapWidth / 2, mapHeight / 2]); var path = d3.geo.path() .projection(projection); var svgDiv = d3.select("body").append("div") .attr("width

IE10 strips out hashtag from the URL

ぃ、小莉子 提交于 2019-12-11 03:32:19
问题 we are building a website using a very restricted CMS. The only thing we can do is to manipulate the front end - play around with the template, use custom css and js. Since we cannot "memorise" user's choices, we came up with a solution to pass certain information via the URL using hashtags. This works smoothly on Google Chrome and Mozilla Firefox browsers but IE10 strips out the hashtag and jQuery fails to customize the page for the user. Here are some examples on how we use this thing: FORM

IE10 - RTL reversed - how to fix?

六眼飞鱼酱① 提交于 2019-12-11 01:59:54
问题 Can't really understand the problem. For some reason - IE10 presents Hebrew in reversed order. If I use compatibility mode(IE Developer Tools, IE 10 compatibility mode) it works fine... http://www.undergraduate.technion.ac.il/rishum/index.html Tried all sorts of RTL fixes(Css, dir attribute, etc.) 回答1: I'm no expert in RTL, but considering it works in compatibility mode, then in short term try adding <meta http-equiv="X-UA-Compatible" content="IE=5"> In long term (or if that doesn't work) you

Internet Explorer 10 box-shadow size

倖福魔咒の 提交于 2019-12-11 01:59:39
问题 Normally I don't bother the small differences in the rendering of box-shadows in different browsers, but in this case the box-shadow size is kind of important. IE9 and IE10 render a smaller box-shadow. Explorer 9 can be fixed with a little larger box shadow using conditional comments, but IE10 appears to have eliminated support for conditional comments. Is there a way of correcting the IE10 box-shadow size and make it a little larger like safari, chrome, firefox? I know it's a little similar

What is MATM in my User-agent

给你一囗甜甜゛ 提交于 2019-12-10 19:12:44
问题 The most used IE User-agent's in my stats are: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MATM) Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) What does the MATM stand for? 回答1: MATM is a codename for the hardware, one of several by the same vendor: useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MATMJS) vendor: TS - useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/7.0; MATM) vendor:

Html5 file upload form with customized style can't fire submit button using ie10

徘徊边缘 提交于 2019-12-10 17:46:00
问题 I want to styling the file upload form with code below: <form method='POST' enctype='multipart/form-data' action='file.php'> <fieldset> <legend>Please choose file</legend> <input type="file" name="upfile" style="display:none"> <div class="input-append"> <input id="filepath" class="input-large" type="text"> <a class="btn" onclick="javascript:$('input[name=upfile]').click();">Browse</a> </div> <div> <input id="submitBtn" class="btn btn-primary" type="submit" value="Upload"> </div> </fieldset> <