internet-explorer-11

how can I use babel polyfill to support all IE11 issues with gulp

不问归期 提交于 2019-12-07 00:38:03
问题 I've been piecing together support for IE11 by adding plugins for transform-object-assign and array-includes and now I'm getting a symbol error for using for of loops. Instead of just tackling them one at a time, is it possible for me to work babel polyfill into my build below and future proof it? I've read several related questions but still am not clear on how I'd fit babel-polyfill into the gulp build below: return gulp.src(input) // Grab the input files .pipe($.babel({ presets: ['es2015']

Css3 transform animation doesn't work in IE 11 for a dynamically created element

。_饼干妹妹 提交于 2019-12-07 00:15:41
问题 I have applied CSS3 transform animation to a dynamically created element and it works in Safari,firefox and chrome but not in IE.I have checked the code and css. there is nothing wrong with them. In IE inspector(Developer tools) animation properties are underlined in red.Don't know what is wrong with this. can someone please help?. MY CSS .loadNew { -webkit-animation-name: rotate; -webkit-animation-duration: 1s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function:

Site behaves differently when developer tools are open IE11

自闭症网瘾萝莉.ら 提交于 2019-12-06 22:40:03
问题 Im using the following template in IE11 and can not figure out why the sidebar sings in every time navigation is happening. When developer tools are open it behaves as I would like it to. It is easily demoed by clicking on any one of the tabs under UI element in the tree while running IE11. However you will notice if F12 developer tools are open the side bar does not slide in every time navigation happens. This is not an issue in chrome. There is an error with fastclick that may show up

External CSS in Internet Explorer 11 not working

依然范特西╮ 提交于 2019-12-06 16:54:01
问题 I am doing some basic editing to change my font color using the external css. When I open in IE11 the font color didn't work and it change to normal black text color. However when I open in the Mozilla firefox, the font color turns red which is what I expected. Has anyone encountered a similar situation as me? Here are my basic code in the external css: p.marking { /* color: #376092; */ color:#FF0000; font: bold 24px "Arial", sans-serif; position:relative; z-index:1; } I changed from blue to

IE 11 cookies in Developer tools

点点圈 提交于 2019-12-06 16:36:36
问题 Is there an equivalent to Chrome's cookie view in IE 11 ? Chrome's cookie viewer: Resources->Cookies. Closest IE11 has is this : Network -> Go to url -> click on details - > Cookies. IE 11 Wiki has this under removed features: "Ability to view all cookies at once via Developer Tools". 回答1: There currently is not a dedicated Cookie viewer in the IE11 F12 Developer tools. There are two possible workarounds: Inspecting cookies within the "Detailed view" in the Network tab Running 'document

Set the selected option as the first option in the selectbox

為{幸葍}努か 提交于 2019-12-06 14:56:00
问题 Open this link in IE to exactly understand the behavior that I will be describing and seek a hack for. I have the following select list: <select> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </select> When I render this in IE, drop-down behavior of this changes compared to other browsers due to which some of the options are pushed above the selectbox while the others are pushed below

After update to Angular 6 [WDS] Disconnected on IE after load

半腔热情 提交于 2019-12-06 14:50:37
I updated my Angular Project from 5 to 6. But now I have issues with the Internet Explorer 11. Every time I try to load the live dev server on localhost:4200 the login page renders but immediatly disconnects from the live dev server. All other Browsers work fine, no errors on the console (tried with Edge, Firefox and Chrome) My pollyfills look like this: /** * This file includes polyfills needed by Angular and is loaded before the app. * You can add your own extra polyfills to this file. * * This file is divided into 2 sections: * 1. Browser polyfills. These are applied before loading ZoneJS

using jquery scroll on ie11 issues with jittery elements

折月煮酒 提交于 2019-12-06 13:43:59
I just encountered a strange issue on ie11. I am trying to create a fixed element that will scroll along with window scroll. $(window).scroll(function() { var scrollY=$(this).scrollTop(); $('.myelem').css('transform', 'translateY(' + scrollY + 'px)'); }); I have also created a fiddle of this: https://jsfiddle.net/fyngwnz6/1/ (This is for replicating the issue, I know this particular case could be solved with a fixed element) The code works flawlessly with no performance issues on every browser, except ie11. When using the scrollbar 'myelem' element scrolls with just a small jitter which

IE11 - Toggling a Class via jQuery.toggleClass() Doesn't Activate the Class in IE11 - It Works in All Other Browsers

雨燕双飞 提交于 2019-12-06 13:35:44
问题 This works in all browsers except IE 11. My code is pretty basic. Click on the text to toggle the class "infinite" which (should) loop the bounce effect forever. IE11 applies the class to the H1 tag but it doesn't animate infinitely like it does in all other browsers. The intended behavior is for it to bounce once at load (this works) and clicking the text applies the class "infinite" which (should) makes it bounce forever (this doesn't work in IE 11). $(window).ready(function(){ $('h1').on(

Difference between IE script and notification settings

假装没事ソ 提交于 2019-12-06 11:43:44
问题 What are the differences among these IE settings: Disable script debugging (Internet Explorer) Disable script debugging (Other) Display a notification about every script error If I turn on all of the three settings what type of errors would be disabled and what type of errors would be displayed as notifications? I noticed that by default script debugging (the first two settings) is disabled in the IE. Is it recommended to test the web application with script debugging enabled? 回答1: I work on