internet-explorer-11

ngx-translate with Angular 9 not working in IE showing compilation error SCRIPT1002

送分小仙女□ 提交于 2020-08-26 08:38:51
问题 After importing TranslateModule into my app module I am seeing an error in Internet Explorer SCRIPT1002 and when navigate to that line I am seeing a class TranslateLoader (there is the problem, IE doesn't know about class). My app is working in IE without that library so doesn't seem to be a polyfills issue there. Any help would be appreciated. Thanks. Using IE11. Happens in both dev mode and prod mode. 回答1: Not sure if this is the proper solution but it worked for me: I have downgraded ngx

ngx-translate with Angular 9 not working in IE showing compilation error SCRIPT1002

元气小坏坏 提交于 2020-08-26 08:36:08
问题 After importing TranslateModule into my app module I am seeing an error in Internet Explorer SCRIPT1002 and when navigate to that line I am seeing a class TranslateLoader (there is the problem, IE doesn't know about class). My app is working in IE without that library so doesn't seem to be a polyfills issue there. Any help would be appreciated. Thanks. Using IE11. Happens in both dev mode and prod mode. 回答1: Not sure if this is the proper solution but it worked for me: I have downgraded ngx

Header video in .m4v format doesn't play in IE 11

岁酱吖の 提交于 2020-08-10 23:57:58
问题 I have a problem that IE11 isn't playing my html5 video tag video. I've tried other browsers like Chrome/Firefox and there it works perfectly fine. IE11 doesn't even give me an error in the console why it isn't playing the video and shows me white background. I tried different formats like .m4v and mp4. The video is in h264 encoding and web optimized(I'm using software named "Handbrake" to encode the video"), the resolution is 1920x1088. I also tried to put "" in my website head. My HTML code

Header video in .m4v format doesn't play in IE 11

做~自己de王妃 提交于 2020-08-10 23:57:09
问题 I have a problem that IE11 isn't playing my html5 video tag video. I've tried other browsers like Chrome/Firefox and there it works perfectly fine. IE11 doesn't even give me an error in the console why it isn't playing the video and shows me white background. I tried different formats like .m4v and mp4. The video is in h264 encoding and web optimized(I'm using software named "Handbrake" to encode the video"), the resolution is 1920x1088. I also tried to put "" in my website head. My HTML code

Unable to apply regex within vba IE

若如初见. 提交于 2020-08-08 06:49:11
问题 I've written a script using vba in combination with IE to parse the contact information from a webpage applying regex on it. I searched a lot but could not find any example that can satiate my requirement. The pattern may not be ideal to find the phone number but the main concern here is how I can use the pattern within vba IE. Once again: my intention here is to parse the phone number 661-421-5861 from that webpage applying regex within vba IE. This is what I've tried so far: Sub FetchItems(

IE 10, 11. How to prevent the triggering of input events on focus from text input with placeholder?

情到浓时终转凉″ 提交于 2020-07-29 11:44:30
问题 In IE 11 if I have an empty email input with a placeholder , then on clicking (focusing) it, the input event is being triggered. Does anyone know why and is there a solution to this, since the input value hasn't really changed? var el = document.getElementById('myEmail'); el.addEventListener("input", myFunction, true); function myFunction() { alert("changed"); } <input id="myEmail" type="email" placeholder="Email"> 回答1: I came very late to the party, but I had the same problem, and I came to

Angular 6.x not working in IE 11 - Error: Invalid argument

寵の児 提交于 2020-07-23 05:05:24
问题 I have an Angular 6.x app running perfectly in Chrome. The problem is when trying to run it in IE 11, I'm getting the error: Error: Invalid argument. at DefaultDomRenderer2.prototype.setProperty... Already tried all answers in StackOverflow that I could find with no help. I'm listing theme here so you guys won't try them as answers: Added all polyfills needed for IE but still having the same problem. Added in head tag: <meta http-equiv="X-UA-Compatible" content="IE=11"> Thank you for helping.

Angular 6.x not working in IE 11 - Error: Invalid argument

自古美人都是妖i 提交于 2020-07-23 05:05:07
问题 I have an Angular 6.x app running perfectly in Chrome. The problem is when trying to run it in IE 11, I'm getting the error: Error: Invalid argument. at DefaultDomRenderer2.prototype.setProperty... Already tried all answers in StackOverflow that I could find with no help. I'm listing theme here so you guys won't try them as answers: Added all polyfills needed for IE but still having the same problem. Added in head tag: <meta http-equiv="X-UA-Compatible" content="IE=11"> Thank you for helping.

Angular 6.x not working in IE 11 - Error: Invalid argument

自闭症网瘾萝莉.ら 提交于 2020-07-23 05:03:13
问题 I have an Angular 6.x app running perfectly in Chrome. The problem is when trying to run it in IE 11, I'm getting the error: Error: Invalid argument. at DefaultDomRenderer2.prototype.setProperty... Already tried all answers in StackOverflow that I could find with no help. I'm listing theme here so you guys won't try them as answers: Added all polyfills needed for IE but still having the same problem. Added in head tag: <meta http-equiv="X-UA-Compatible" content="IE=11"> Thank you for helping.

Javascript code for Input range slider not working in internet explorer 11

若如初见. 提交于 2020-07-21 05:30:40
问题 This is my html code <input type="range" name="que1" min="0" max="100" value="0" class="slider" id="myRange"> And the javascript code for it is var slider = document.getElementById('myRange') function onChange(event) { var x = event.target.value if (x == 0) { slider.className = '' } else if (x > 30 && x < 60) { slider.className = 'MyClass-1' } else if (x == 100) { slider.className = 'MyClass-2' } } slider.addEventListener('input', onChange) As I drag the slider , the value changes but the