internet-explorer-10

Javascript/Prototype Effect Parallel not working in IE10

瘦欲@ 提交于 2019-12-12 02:53:42
问题 I am having trouble with my JS in IE10 (IE7-9 works "fine") I have a slider with a fade/appear transition effect. When sliding to the next picture, the current one is faded out, while the next one is faded in. Problem is, that IE10 doesn't do the effect, it only hides the current one and shows the next one (but the delay between clicking the Next button and the showing of the next picture equals the duration of the effect on other browsers, so it does do something..) There are no console or

pseudo elements IE10 button

大城市里の小女人 提交于 2019-12-12 02:29:57
问题 I put together a button using :before and :after elements and IE10/9 are ignoring them completely, as far as I can tell they should be working perfectly in at least those 2 versions. .buttonSML { background-position:-35px -432px; background-color: transparent; border: none; text-transform: uppercase; font-size: 2.9rem; font-weight: @font-bold; height: 55px; padding: 0 5px; position: relative; .text-shadow(0,0,4px); cursor: pointer; } .buttonSML:before, .buttonSML:after { content: " ";

CSS: Is box-reflect (or an alternative) compatible with IE10?

青春壹個敷衍的年華 提交于 2019-12-12 02:22:29
问题 So I have the following line in my CSS: -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), to(white)); This renders correctly in Chrome, as you would expect. I am wondering if there is a similar option for IE. I tried just dropping the webkit prefix, but that doesn't do the trick. Checking http://html5please.com/ says to avoid using box-reflect - but the last time that feature was updated was more than a year ago.

IE10 - JQuery ajax html not loading data

邮差的信 提交于 2019-12-12 01:53:47
问题 I have done some research already by looking at the following post (Ajax not work on IE10) and few other websites, but unfortunately it did not fixed my problem and that's why I need your help ;) Below you can see my JQuery ajax script, My problem is that I can get to ajax and return value to errorDivStyle, but I am not able to load $("#mainView").html(data); data is returned from PHP script and its HTML. Please note it works perfectly fine in Chrome, FF and IE 9 but NOT IE10. Is there

CSS behavior difference between development version and published version in IE10

时间秒杀一切 提交于 2019-12-12 01:43:50
问题 We have created an ASP.NET website, and so far the little CSS we have used has worked fine. We tested in on the VM's in IE 10.0.9200.16899. Now we have published the website on our development server in IIS 7 for testing purposes, and when I open up the site on the VM (opening the same browser), there are layout differences; some severe, some not quite so. To give examples: (1) We are using Infragistics components, and their styling seems to be very near to the original for the most part

Document Mode in IE 10

风格不统一 提交于 2019-12-11 21:00:56
问题 I added this to hide compatibility button, which worked perfectly fine; <meta http-equiv="X-UA-Compatible" content="IE=EDGE"/> But Document Mode: comes as Standards (Page Default) when what I want is "Document Mode: Quirks" 回答1: By hiding the compatibility button, you are claiming that your page is standards-compliant. Wanting to use Quirks Mode while stating that your page is standards-compliant is an oxymoron. If your page uses Quirks Mode, set IE=5.5 . Otherwise, fix your page to actually

MVC4 Html.BeginForm submit button in internet Explorer >9 not working

我是研究僧i 提交于 2019-12-11 20:43:43
问题 I have a form written in ASP.NET MVC4/Razor. The form post works perfectly well in Firefox and Chrome, but for some reason in Internet Explorer 10 and 11, the "Submit" button is unresponsive. (Internet Explorer 9 works also good). This is how my form in the view looks like: <div class="bla"> <table style="width:100%;"> @using (Html.BeginForm("MyAction","MyController", FormMethod.Post, new {id="myID"})) { <thead> <tr> <th class="heading highlight">Enter Registration</th> <th> <span style=

Onclick event in anchor tag not working in IE10

隐身守侯 提交于 2019-12-11 20:33:17
问题 I've an anchor in an Asp.Net user control. I've wired some code to the onclick event. For some reason in Internet Explorer 10, the event is not firing. The markup is structured as <a href="#" id="myAnchor" onclick="myFunction();return false;"></a> where myFunction is a simple JavaScript function. For those who want to see the page in action, here is the link: http://alt.thedominion.ca/TheBrokerAdvantage/LocateABroker.aspx Any help is greatly appreciated! 回答1: The problem is with your server

SCRIPT5007: Unable to get property 'value' of undefined or null reference

只愿长相守 提交于 2019-12-11 19:40:00
问题 I have a html form that appears not to be functional in IE10. when click on go button debugging returns:"SCRIPT5007: Unable to get property 'value' of undefined or null reference" I have added this tag in my html page <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />. html contains dropdown menu option for frequency in myform.After selecting any option in dropdown i am calling below javascript function. function chooseFreqMenu(freqValues,freqTexts) { var cf = document.myform; var

border-top-left-radius not working in IE

末鹿安然 提交于 2019-12-11 19:27:22
问题 I'm using IE10 to design something at the moment [Because it needs to be completely compatible with it], and I'm having trouble. I have two boxes on either side of the page, with an image at the top. The inner top corner is curved using border-top-*-radius, and this is also implemented on the image inside. CSS: #rightsidebar { position:fixed; width: 300px; height: 400px; padding: 10px; margin: 0px 0 0 500px; border-top-left-radius: 110px; -webkit-border-top-left-radius: 110px; background