internet-explorer-11

Does IE 11 ignore autocomplete=“off”?

蓝咒 提交于 2019-11-28 21:23:22
I'm working on a mature ASP.NET/C# application (it's about three years old). For various reasons I've recently begun using the beta IE 11. However, when I first fired up the app in the browser, I noticed that it asked me if I wanted Internet Explorer to remember the password for this site. This doesn't happen in any other browser the app supports, or other versions of IE, due to the presence of autocomplete="off" e.g. <form id="form1" runat="server" autocomplete="off"> Is this skunked in IE 11 (which I know is only beta, but I'm a bit worried about it)? EricLaw Yes, IE11 deliberately ignores

Forcing IE 11 to behave as IE 10

元气小坏坏 提交于 2019-11-28 20:14:05
问题 We've run into an unusual bug with Internet Explorer and we need to force IE 11 to behave as IE 10 (since this bug is not present in IE 10). I have tried the following: <meta http-equiv="x-ua-compatible" content="IE=10"> but unfortunately this does not work and I have not found anything relevant or helpful from Google searches or the docs. So how do we get IE 11 to behave as IE 10? 回答1: Do the following: The correct meta string is: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10"/>

window.ActiveXObject difference in IE11

天大地大妈咪最大 提交于 2019-11-28 17:32:20
While looking over our site in IE11 to find out what's broken now, we noticed that the below code doesn't evaluate to "true" correctly: this.isIEBrowser = false; if (window.ActiveXObject){ this.isIEBrowser = true; } Upon further investigation, it appears that typeof(window.ActiveXObject) results in "undefined" , whereas in IE10 mode, it results in "function" . When I add window.ActiveXObject to the watch list, it shows as being a function type. Similarly, if I do typeof(window.ActiveXObject.prototype) , I get "object" for both IE11 and IE10. Does anybody know why this changed, or where I can

Is there a Microsoft equivalent for HTML5 Server-Sent Events?

本秂侑毒 提交于 2019-11-28 15:20:16
问题 I am using HTML5 Server-Sent Events as follows: SSEUpdate = new EventSource("http://example.com/update.php"); SSEUpdate.onmessage = function(e){ console.log(e.data); } It does not work in IE11. (Error in console: 'EventSource' is undefined ) Is there an identical Microsoft equivalent, or do I have to do something completely different? 回答1: In a word, no. Microsoft has not included SSE or an equivalent of SSE in any version of IE. IMO, you have two good options: Use a polyfill - My tests with

32 bits IE Toolbar not working in Win 8.1 64 bits RTM/IE11

China☆狼群 提交于 2019-11-28 14:24:18
I'm trying to update a 32 bits IE toolbar to work under Win 8.1 64 bits RTM/IE11. Without any specific change, my toolbar is seen as "incompatible" by IE11 and is disabled. I've discovered this is because Enhanced Protected Mode is activated by default on IE11 (I could have been in same situation with Win 8 if EPM was activated in IE10). If I desactivate EMP in IE>Internet Options>Advanced>Security, my toolbar works as expected. But because this option is ie wide (it's applied to every BHO, toolbar and ActiveX), it's not a viable workaround. I've seen Eric Law's Understanding Enhanced

Selenium not detecting the second window in IE

浪尽此生 提交于 2019-11-28 12:14:44
My application opens up a new window on clicking a button and i need to perform some actions in that window. But the response getWindowHandles() method of selenium webdriver has only one window id in it. This happens especially if there is a delay in calling the getWindowHandles() after opening the new window. There is a known issue with selenium. https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver#required-configuration But even the solution for that is not working for me. Code is as follows DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer();

IE11 making background image text blurry

给你一囗甜甜゛ 提交于 2019-11-28 12:14:29
I'm working on a website, where I use image sprites on a button. In every other browser I've tried, except for IE11, the text on my sprite is crisp as it should be, but in IE11, the text gets blurry (See images). The blurry one being IE11 ofc. The width of the sprite is 189px and the height is 378px. I use the following CSS: button { width:189px; height:189px; background-image:url('../images/kontakt-os.png'); background-position: top; cursor:pointer; border-radius: 100px; } button:hover { background-position: bottom; -webkit-box-shadow: 0px 10px 1px 1px rgba(179, 47, 1, 1.0); -moz-box-shadow:

HTML5 number input field step attribute broken in Internet Explorer 10 and Internet Explorer 11

邮差的信 提交于 2019-11-28 12:09:08
It appears some of my website's users are experiencing issues when attempting to insert values into input fields of type number with the step attribute set. I am using Django 1.6 to render the forms to HTML. The number fields map to an underlying DecimalField model field with max_digits=25 and decimal_places=5 This results in the following example html being rendered for the number field: <input type="number" value="" step="0.00001" name="quantity" id="id_quantity"> The step attribute I know is not yet supported in FireFox but is in Opera, Chrome, Safari and IE10+ Everything works fine in all

Internet Explorer 11 Back Button Javascript Behavior

空扰寡人 提交于 2019-11-28 11:59:57
In Chrome, FF, and IE8-10, when I press the back button, my javascript $(document).ready() function is called, but in IE11, none of the javascript is invoked. Does anyone know how to make IE11 respond like all the other browsers and bring consistency to my code? <script type="text/javascript"> alert("Are we called?"); // neither is this called in IE11 $( document ).ready( function() { alert("document ready"); // does not get fired after hitting back on IE11 }); </script> The annoying issue about IE11 is that if you turn on developer tools and start trying to trace or debug the issue, it goes

How to make background-image with linear-gradient work on IE 11?

﹥>﹥吖頭↗ 提交于 2019-11-28 11:56:16
Any idea how I can make background-image with linear-gradient to work on IE 11? The following code works fine on IE 10 but doesn't work on IE 11. background-image: url(IMAGE), -ms-linear-gradient(top, #ffffff, #BEE38F); I can make linear-gradient to work on IE 6-9, 11 using the following filter but background image is not displayed in this case. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#BEE38F',GradientType=0 ) I'm open to an ideas. Update: Here's the code I currently have. background-image: url(IMAGE), -webkit-gradient(linear, left top, left