internet-explorer-11

Flexbox Not Centering Vertically in IE

旧巷老猫 提交于 2019-11-27 17:16:26
I have a simple web page with some Lipsum content that is centered on the page. The page works fine in Chrome and Firefox. If I reduce the size of the window, the content fills the window until it can't and then adds a scroll bar and fills content off screen, toward the bottom. However, the page doesn't center in IE11. I can get the page to center in IE by flexing the body, but if I do, then the content starts to go off screen towards the top and cuts off the top of the content. Below are the two scenarios. See the associated Fiddles. If the problem isn't evident right away, reduce the size of

How to downgrade from Internet Explorer 11 to Internet Explorer 10?

纵然是瞬间 提交于 2019-11-27 16:52:00
As a developer, I found the new Internet Explorer version to be a complete nightmare. I turned the windows feature off, but I wasn't able to install Internet Explorer 10 . It says that it's already installed which it is not. Is there a file or a registry entry I should delete as well? kmas Go to Control Panel -> Programs -> Programs and features Go to Windows Features and disable Internet Explorer 11 Then click on Display installed updates Search for Internet explorer Right-click on Internet Explorer 11 -> Uninstall Do the same with Internet Explorer 10 Restart your computer Install Internet

Internet Explorer 11 getting stuck randomly while executing tests through IEDriverServer and Selenium

醉酒当歌 提交于 2019-11-27 16:26:52
I'm having issues that IE version 11 stuck randomly on some page. the code is working fine because whenever i restart the program sometimes it work but the most annoying will be randomly stuck after click and load the page. is this normal on IE? i never had this type of issues when using Chrome. but this website works only at IE. can i know the cause of this problem is it the driver?, the website itself? or Network security? While you work with Internet Explorer v11 you need to configure your test framework with the Required Configuration . Apart from these specifically only for IE 11 you will

CSS3 animation is not working in IE11 but works in other browsers

前提是你 提交于 2019-11-27 15:05:16
问题 I have created a CSS3 animation on a button. At the moment, it works perfectly everywhere apart from IE. I know it wont work well in older IE versions, but I was atleast expecting it to work in IE11. I have created a fiddle to demonstrate Fiddle I call the animation on :before and :after like so animation: 1000ms ease 0s normal none infinite running pulse-long; If you open the fiddle in Firefox or Chrome, you should see the animation on the button working. If you open it in IE11, it is just a

Template literals syntax is not working in IE11

我们两清 提交于 2019-11-27 14:37:56
The back-tick character is not recognized as a Valid Character in IE11 when using the "use strict" directive while it works in other browsers, such as Chrome. What is the interpretation of this behavior taking into consideration that IE11 is still widely used even among Windows 10 users?? "use strict"; function doIt() { let tt; tt = 50; alert(`${tt}`); alert("test"); } doIt(); Error: { "message": "Invalid character", "filename": " http://stacksnippets.net/js ", "lineno": 18, "colno": 17 } If you look at the ECMAScript 6 compatibility table , you'll see that template literals are not supported

Does IE 11 ignore autocomplete=“off”?

岁酱吖の 提交于 2019-11-27 13:59:23
问题 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

Support for ES6 in Internet Explorer 11

回眸只為那壹抹淺笑 提交于 2019-11-27 13:51:34
According to this page http://kangax.github.io/compat-table/es6/ , ES6 features are not implemented in IE 11. Does IE 11 have a plan for implementing them one day or can I forget about it? Is there a page that explain their intent on that subject? I read somewhere (I cannot remember where exactly) that they don't plan to fix bugs in IE 11, so my guess is that they won't bother implement new features? A. Bandtock The statement from Microsoft regarding the end of Internet Explorer 11 support mentions that it will continue to receive security updates, compatibility fixes, and technical support

Setting window.location or window.open in AngularJS gives “access is denied” in IE 11

馋奶兔 提交于 2019-11-27 13:33:39
I'm admittedly an AngularJS newbie but I can't find why this code works in Chrome and Firefox but gives "Access is denied" in the javascript console with IE 11. I need to display a PDF via an authenticated REST call. Ideally this would be displayed in a popup (preview) kind of window. Code thus far looks like: $http.post( url, payload, { headers : { "Authorization": token }, responseType: "arraybuffer" }).success(function ( data ) { var file = new Blob( [ data ], { type: 'application/pdf' }); var fileURL = URL.createObjectURL( file ); window.open( fileURL ); } The window.open() gives the

IE11 meta element Breaks SVG

我们两清 提交于 2019-11-27 12:38:26
I've embedded an SVG files data directly into my html. It shows in Chrome and Firefox, but in IE11 it doesn't show at all. The pastebin link to the SVG is http://pastebin.com/eZpLXFfD I've tried adding a META TAG but to no avail. At first I thought it might be a IE Compatibility view issue, but toggling that feature did not work either. <meta http-equiv="X-UA-Compatible" content="IE=8"> Any help? What else Information Can I provide to help answer this question It sounds as though you're not in a modern document mode. Internet Explorer 11 shows the SVG just fine when you're in Standards Mode.

Using `window.location.hash.includes` throws “Object doesn't support property or method 'includes'” in IE11

扶醉桌前 提交于 2019-11-27 10:03:07
问题 I am checking the URL to see if it contains or includes a ? in it to control the hash pop state in the window. All other browsers aren’t having an issue, only IE. The debugger gives me this error when I try to load in this way: Object doesn't support property or method ' includes ' I get no error when I load the page in through the popstate. $(document).ready(function(e) { if(window.location.hash) { var hash; if(window.location.hash.includes("?")) { alert('I have a ?'); hash = window.location