internet-explorer-11

IE 11 Bug - Image inside label inside form

佐手、 提交于 2019-12-03 22:16:59
In IE11, the following piece of code will check the radio button as expected: <input type="radio" id="myRadio" /> <label for="myRadio"> <img src="..." /> </label> Wrapping a <form> around the above will however break the functionality of the label. This SO post offers a solution to the problem by styling the image with pointer-events:none , and the label as a block-level element. While that should of course not even be necessary, it also disables the ability to handle mouse events. It would be much appreciated if someone can offer a pure CSS solution to this problem. PS: One thing worth

Google Maps compatibility IE11 not working because of polyfills.js

浪子不回头ぞ 提交于 2019-12-03 22:13:08
My app website is not working fine on IE11. The website is not loading, it gives me a blank page This is the error thrown on IE11 : SCRIPT5005: String expected js (26,286) SCRIPT5022: Exception thrown and not caught. polyfills.js (3234,3) I'm enclosing the screen capture on on the console I have included the API in my index.html like this : <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=API_KEY"></script> It should include googlemaps after my polyfills.js, but I'm not sure on how to do that I've tried to use agm-map, and others solutions but so far, nothing is

Flexbox/IE11: flex-wrap: wrap does not wrap (Images + Codepen inside)

ⅰ亾dé卋堺 提交于 2019-12-03 22:06:37
I created a list with social icons. Those icons should wrap on small screens. I use flex-wrap: wrap; and it works perfect in Firefox and Chrome: But Internet Explorer 11 (and IE 10) will not break the line: Code Pen Example View the code here: http://codepen.io/dash/pen/PqOJrG HTML Code <div> <ul> <li><a href="#"><img src="http://placehold.it/40x40" alt=""></a></li> <li><a href="#"><img src="http://placehold.it/40x40" alt=""></a></li> <li><a href="#"><img src="http://placehold.it/40x40" alt=""></a></li> <li><a href="#"><img src="http://placehold.it/40x40" alt=""></a></li> <li><a href="#"><img

Saving file on IE11 with FileSaver

混江龙づ霸主 提交于 2019-12-03 21:06:11
问题 I'm using FileSaver library ( https://github.com/eligrey/FileSaver.js) and does not work on IE11, with other browsers I had no problem. The code is this: var file = new File(["content"], "sample.xml", { type: "application/xml;charset=utf-8" }); saveAs(file); I'm getting this error when the first instruction (new) executes: "the object does not accept this action" There's an open issue on git hub, but actually with no solution, I'm looking for a workaround that should work on IE11, like this:

IE11 intermittently not loading pages

半腔热情 提交于 2019-12-03 20:52:16
Many of our users are reporting that they are getting a blank page when using IE11 to access our website. Sometimes they don't even get a blank page, the browser just stays on the last page visited. These users can access other domains (such as google.com) without a problem. For the browsers that are failing, if those users disable Protected Mode in IE, then they can again access our site, but this isn't a good solution because we have thousands of users and we can't go telling each of them to reconfigure their browsers, not to mention that we're completely losing the business of those

Clear session cookies in ie11?

孤人 提交于 2019-12-03 19:47:47
问题 in previous versions of IE the F12 dev tools had several option for cache and cookie management, but in the new IE 11 version (on the network tab) the option to clear / delete session cookies seems to be missing, does anyone know where to find it, (or how to accomplish this) ps- no, "close IE and restart" is not a solution 回答1: There's a Clear Cookies for Domain button at the top center of the Network tab in the remodeled F12 tools. To clear ALL session cookies, in the address bar, type:

Angular 2 performance IE11 *ngFor

↘锁芯ラ 提交于 2019-12-03 17:33:07
问题 I'm trying Angular 2 and I noticed that performance on Internet Explorer 11 is dramatically slow while cycling with *ngFor over 1500 items. It takes about 25sec with IE11 whereas less then 1sec on other browsers. Pausing the debugger I noticed that the code constantly calls isNan function in es6-shim.js. Here the call stack: A working plnkr here: http://plnkr.co/edit/sEujClHmuCbrydIiYQYL?p=preview . The code is very simple: <ul *ngFor="#item of items"> <li>Item: {{item.itemKey}}</li> </ul> /

Datepicker Support in IE11 and Firefox

。_饼干妹妹 提交于 2019-12-03 16:13:06
问题 What is wrong with this simple HTML page that a date picker is not shown in FireFox 30.0 and IE 11? <!DOCTYPE html> <html> <head> <title>Untitled Page</title> </head> <body> <form> <label> Date field:</label><br /> <input type="date" value="" /> </form> </body> </html> 回答1: Internet Explorer 11 does not currently support <input type='date'> , though we did recently announce that work was underway to do so. You can track that progress online at http://status.modern.ie. Firefox also does not

Internet Explorer 11 gives script error in PageRequestManager.js

时间秒杀一切 提交于 2019-12-03 16:04:43
I'm using ASP.NET 4.5 on the server and I have a .NET Windows application with a Web Browser control that navigates to the web page on the server. If I run the Windows application on a system with Internet Explorer 11, I get a script error: "Object doesn't support property or method 'attachEvent'" when navigating to another page. The script file is ScriptResource.axd so it isn't any of my scripts. I do know that Internet Explorer 11 doesn't support attachEvent anymore (replaced with attachEventListener?). That is however not of much help here, as the javascript is part of the framework, not in

IE 11 throws exceptions when debugging responsive Web app with Bootstrap in Visual Studio 2013

梦想的初衷 提交于 2019-12-03 15:24:47
问题 When I resize the browser window and I hit a responsive breaking point, this (dynamic) method throws an exception at line 3: window.__BROWSERTOOLS_CONSOLE_SAFEFUNC = function (fn) { var returnFn = function () { return fn(arguments); }; return returnFn; } Unhandled exception at line 5, column 25 in eval code 0x80004005 - JavaScript runtime error: Unspecified error. I think what this does is manage listeners for media query evaluation changes, but the arguments contain a bunch of methods that I