internet-explorer-10

jQuery slideToggle and CSS border-radius property show unusually in IE10

馋奶兔 提交于 2020-01-05 06:56:11
问题 I am using MVC4 and in my page I took 4 div and all div. I have JSFiddle URL to check my exactly problem. jsfiddle Please run this in only in IE10, because in below IE10 or any other browser it working fine. jQuery(document).ready(function () { jQuery(".HomeContent").hide(); jQuery(".HomeDivHeading").click(function () { jQuery(this).next(".HomeContent").slideToggle(250); }); }); In IE10 when I slide down any din it shows like this I want to resolve this problem when I slide down div it look

Green Video in IE 10

狂风中的少年 提交于 2020-01-05 06:43:13
问题 In my own embedded videos, and on the Video-JS site, I see a bright green screen, like the attached image. Does anyone else see this? I'm using IE 10 on Windows 7 in VMWare. Bright green video bug ie 10 回答1: If you run the VMware turn off hardware acceleration of the graphic card in the VM preferences, then the green screen is gone. 回答2: I am experiencing the same issue on a virtual machine (vmware with windows7 on a mac) - I read somewhere that it is likely a video card driver. 来源: https:/

YouTube embedded overlays on each tab for IE10

百般思念 提交于 2020-01-05 03:05:09
问题 I am running into a weird issue and can't seem to find a solution. Using either JqueryTools tabs widget or JqueryUI tabs widget when a Youtube video is embedded it keeps overlaying it on every tab. This only occurs in IE, specifically tested with IE10. Anyone know why? I created a jsfiddle to better illustrate this issue: http://jsfiddle.net/ncfbX/19/ Edit: Wouldn't let me submit it without including some code, so: HTML: <div class="main"> <div class="slides">Slides division</div> <div id=

CSS animation not working in Internet Explorer 10 and 11

≯℡__Kan透↙ 提交于 2020-01-05 03:04:32
问题 The following css animation works perfect in Chrome, Mozilla, Opera browsers but doesn't work in Internet Exporer 10 and 11. What's wrong? Please see http://jsfiddle.net/bm72w3n3/ .changed { -webkit-animation:target-fade 5s 1; -moz-animation:target-fade 5s 1; animation:target-fade 5s 1; } @-webkit-keyframes target-fade { 0% { text-shadow: 0 0 10px yellow; } 100% { -webkit-transition: text-shadow 0.2s linear; } } @-moz-keyframes target-fade { 0% { text-shadow: 0 0 10px yellow; } 100% { -moz

Disable IE10 clear field in Compatibility mode

南楼画角 提交于 2020-01-04 04:18:09
问题 I don't want the clear functionality (the X button) in text boxes rendered in IE10 and above. For this, I'm setting the display of the pseudo element -ms-clear to none . However, it still shows up when IE is running in Compatibility mode. Since this is an Intranet site, it will always run in Compatibility mode. And there's no workaround for this: http://connect.microsoft.com/IE/feedback/details/783743/disable-ie10-clear-field-button-when-rendering-in-compatibility-mode Using <add name="X-UA

Internet Explorer versions testing in February 2014: browserstack, saucelabs, ghostLab, spoon & other tools

不羁岁月 提交于 2020-01-04 04:04:09
问题 I am currently (February 2014) trying to find the best tool to perform Internet Explorer versions testing (IE8, IE9, and so on) . I found that my options were the following: Run any web browsers instantly from the web, using: www.browserstack.com, saucelabs.com , ghostLab or www.spoon.net Run IE VMs from Modern.IE project (for IE web browsers testing) One Windows VM + multiple standalone versions of Internet Explorer using http://utilu.com/IECollection/ (for IE web browsers testing) Dedicated

No scrollbar appears in container with overflow auto (IE10, Windows Phone 8)

好久不见. 提交于 2020-01-03 15:33:32
问题 I have a container (let's say a div ) with overflow: auto . The elements in it are scrolled exactly as expected, but the typical touch scrollbar doesn't appear. I tried to set -ms-overflow-style: auto explicitly, but nothing changed. Browser: IE10 Device Windows Phone 8 回答1: Check behavior here: http://msdn.microsoft.com/en-us/library/ie/hh771902(v=vs.85).aspx Hope it helps. 回答2: Based on the above link I think you should try -ms-overflow-style: scrollbar Scrollbar Indicates the element

SVG background size differs in Internet Explorer 9 & 10

六月ゝ 毕业季﹏ 提交于 2020-01-03 09:29:10
问题 I've been trying to use a SVG as a background-image for an element scaling it using the background-size -property. This works great in most current browsers, but Internet Explorer seems to misinterpret the values, showing the image in a much smaller size when I use only one value, and an incorrect ratio with two values. I've put up an example at http://jsfiddle.net/c7DEw/1/ The width and height of the svg have been set to 100%. I figured it had something to do with the viewBox and enable

RequiredFieldValidator client side validations do not work on IE 10

ぐ巨炮叔叔 提交于 2020-01-03 01:21:47
问题 All my webforms using RequiredFieldValidator, RegularExpressionValidator and ValidationSummary are not working on IE 10. It is working fine on any other browsers. It is strangely doing postback which does not happen on any other browsers. Another strange thing is when I open developer console(F12), it seems to be working but it is still doing postback. All these Validations should occur at client side by default. Has anyone here faced similar problem? 回答1: please check these link1 and link2

Internet Explorer displaying XML attributes in random order

一世执手 提交于 2020-01-02 03:58:15
问题 i am opening an xml file in Internet Explorer (9, Windows 7 64-bit). Internet Explorer likes to display element attributes in random order , e.g.: rather than in declared order: <ApplicationVersion major="2" minor="2" release="12" build="687">2.2.12.687</ApplicationVersion> e.g.: Or rather than: Is there an element, attribute, xml-dtd, xml-schema, Internet Explorer option, Windows option anywhere that will instruct IE to display the XML in declared, rather than random order? 回答1: Attributes