internet-explorer-10

IE10 freezes with jquerymobile application

耗尽温柔 提交于 2019-12-24 01:46:05
问题 I have a jQueryMobile website that is freezing up on IE10 (all other browsers appear to be okay). The behavior is strikingly similar to whats recorded here (https://github.com/jquery/jquery-mobile/issues/5695). I've taken a profile trace of the app at the time it happens, and it looks a bit like this (ordered by Inclusive time). Here's a link to the full csv export of the profile (http://db.tt/JFTFyeGP) handle 135,142 68,758.53 1,018.14 https://webstore.revtrak.com/Portal/Scripts/jquery-1.9.1

vbscript is not working on IE10 browser mode

守給你的承諾、 提交于 2019-12-23 20:10:09
问题 Our client decided to upgrade to windows 7 and IE 10. Our application which is in 1.1 dot net framework is having issues as it contains vbscript which does not work as soon as user changes the browser mode to IE 10. It works fine if the browser mode is selected as IE 10 compatibility view. It also works fine on IE9,IE8. Vbscript can be as simple as below. <script language="vbscript"> function ValidateEmail(sEmail) set myExpression = new RegExp myExpression.pattern = "^(\w+\.)*(\w+)@(\w+\.)+(

SVG is not rendering in IE 10 with Doctype HTML 4

℡╲_俬逩灬. 提交于 2019-12-23 19:40:59
问题 <%@ Page Language="C#" .. %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <body> <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" /> </svg> </body> </html> /*The above Code is not working. Not getting any output. if replace the second line the Doctype as below, it works. < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional

-ms-viewport causing div not scrolling

匆匆过客 提交于 2019-12-23 18:12:30
问题 I seem to have encountered a very strange bug; I am doing an app for Windows Phone 8 with PhoneGap. The problem I am having is that that I have scrollable div which works when I use: <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, height=480, width=320, target-densitydpi=device-dpi" /> (I tried using height=device-height , width=device-width , all worked) However, when I remove the viewport meta tag and use this instead: @-ms-viewport {

What is the correct property for flex-wrap in IE10?

梦想的初衷 提交于 2019-12-23 17:32:18
问题 I am trying to use flex-wrap , but find it is not supported in IE10. Is there any other flex property that could achieve the same result in IE10? 回答1: All flex properties that work in IE10 can be found in Microsoft documentation: Flexible box ("Flexbox") layout in Internet Explorer 10 For flex-wrap you would use -ms-flex-wrap . Another option is to paste your code in the following tool, which automatically generates all the prefixes you need. Autoprefixer 来源: https://stackoverflow.com

IE10 Hover + Pseudo Elements

风流意气都作罢 提交于 2019-12-23 16:59:55
问题 Example: http://codepen.io/mastastealth/pen/gFjhi Basically, I have an element with an :after element set to opacity 0. On hover, it goes to opacity 1. Apparently it works in IE9 and everywhere else, but not IE10 (unless I click)? Ideas? 回答1: It appears there is a bug where the selector with a pseudo class followed by a pseudo element is not listened for when an event happens. If you add the listener by simply adding the selector with only the pseudo class your style will be applied on the

IE10 Validation bug with maxlength and placeholder on textbox

六月ゝ 毕业季﹏ 提交于 2019-12-23 09:07:14
问题 I have a textbox for Age: <input type="text" id="txtAge" name="txtAge" class="text" placeholder="Age (optional)" maxlength="2"> Upon clicking submit, this input is instantly bordered red. There is no postback. I'm assuming IE10 believes the client has actually typed in "Age (optional)" which is greater than the maxlength of 2. Is there anyway to get around this without making the user do anything in their browser's settings and without removing the maxlength attribute? 回答1: You can use the

Why is “font-size: 1em” bigger in IE10 than Chrome?

社会主义新天地 提交于 2019-12-23 07:56:04
问题 I'm currently working on developing a site, and I can't figure out why the text displays bigger in IE10 than it does in Chrome. (I've made sure that both of the browsers are set to 100% zoom--no more, no less.) I've got a reset in my CSS: body { font-size: 1em; } . In Chrome (v27.0.1453.116 m), this displays as expected--if I change that rule in the CSS to font-size: 100%; or font-size: 16px; , nothing visibly changes. This, to me, indicates that in Chrome, 1em = 16px. But the proportional

IE10 table-layout:fixed broken if colspan is used

时光怂恿深爱的人放手 提交于 2019-12-23 07:41:02
问题 The following HTML renders perfectly in all common browsers including IE7-9 but fails in IE10. Even when running IE10 in compatibility mode, it fails. <html> <body> <table style="table-layout:fixed;width:500px"> <colgroup> <col style="width:100px" ></col> <col ></col> <col style="width:100px" ></col> <col ></col> </colgroup> <tbody> <tr> <td colspan="2"> <div style="background:red;"> red </div> </td> <td colspan="2"> <div style="background:green;"> green </div> </td> </tr> </tbody> </table> <

LinkButtons in IE10 not performing posting back

情到浓时终转凉″ 提交于 2019-12-23 07:28:47
问题 I'm trying to add a simple LinkButton to an ASP.NET 4 page but it's not calling the postback in IE10. The code looks like as follows. HTML: <form id="form1" runat="server"> <div> <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">LinkButton</asp:LinkButton> <br /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </div> </form> C#: protected void Page_Load(object sender, EventArgs e) { } protected void LinkButton1_Click(object sender, EventArgs e) {