Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
0 answers
252 views

Babel doesn't work with IE11 on built in class Map extending

I have some legacy code, a class ExtraMap that extends built-in Map class. export class ExtraMap<K, V> extends Map<K, V> { getOr(key: K, or: OrFunctionType = defaultOrFunction): V { ...
Tinmar's user avatar
  • 370
0 votes
2 answers
1k views

Aurelia: Object doesn't support property or method 'bind' in IE 11

The problem I am trying to get my Aurelia project working in Internet Explorer 11, however, I am getting the following message: Object doesn't support property or method 'bind' (app.bundle.js 188,...
zerk's user avatar
  • 556
0 votes
1 answer
2k views

Does React Typescript works in Internet Explorer 11?

I have many React applications that works in Internet Explorer 11 (With polyfills). I would like to use TypeScript in my next applications, so I developed my first one using the same technologies and ...
Axel León's user avatar
3 votes
1 answer
3k views

Map(iterable) alternative for IE 11

Unfortunately I have to support IE11. I create my map with this code (polyfill for .entries already used): const map = new Map(Object.entries(array)); but because of IE11 not supporting the ...
breezertwo's user avatar
0 votes
1 answer
539 views

SIP and TEL links are not working in internet explorer

Sip and Tel links work a few times initially in ie11 but then stop working. This works fine on chrome and edge. The mailto works every time without fail on internet explorer. And when I click the ...
Barkha Jain's user avatar
-2 votes
2 answers
4k views

IE11 throw Expected identifier SCRIPT1010 on vendor.js in WEBPACK VAR INJECTION

I have issue with Expected identifier ERROR code: SCRIPT1010 which points on vendor.js in WEBPACK VAR INJECTION section. Debugger points on line with: const { keccak256, keccak256s } = ...
Uland Nimblehoof's user avatar
4 votes
6 answers
7k views

Internet explorer & Angular 6 ERROR Error: Uncaught (in promise): Error: Loading chunk

I am getting issue while using angular 6 and IE 11, app is working fine in chrome & another browser but in internet explorer, i am getting this ERROR Error: Uncaught (in promise): Error: ...
BJ Coder's user avatar
  • 392
1 vote
1 answer
429 views

64-bit enum flag in Internet Explorer 11

We are sending a 64-bit enum from our C# back-end to our clients browsers via Web API 2. One of the requirements for the application is that it should run on Windows 10 x64 with ie11. However when I ...
Ogglas's user avatar
  • 68k
0 votes
2 answers
2k views

Unable to find my *.ts files in IE 11 debugger

As title says, I'm unable to find my typescript files in IE 11 debugger, as I do in Chrome debugger. I scrolled down to "Dynamic scripts", but I'm only seeing Javascript files in it. Would ...
Aa Yy's user avatar
  • 1,742
2 votes
1 answer
1k views

IE error with Angular 2

I need help on this IE error which I think relates on binding issue on my HTML page. I'm using IE 11 and Angular 2. It has no error on Chrome and Firefox but I got an error on this with IE 11 only. I ...
timmack's user avatar
  • 590
3 votes
2 answers
3k views

Angular 2+: Multiple definitions of a property not allowed in strict mode in IE11

I have my pollyfills in and I'm getting this error from Internet Explorer 11 in my main.bundle.js. It's on line 9692, but looking at the compiled code, I'm not able to make any sense of it. Here it is:...
BBaysinger's user avatar
  • 6,917
5 votes
1 answer
4k views

Issue with Angular 2 application and select option in Internet Explorer

I encountered an odd problem in Internet Explorer and I hope someone might be able to explain me the issue here. In my Angular 2 app, I have a form with a selection box. The user can choose between ...
andreas's user avatar
  • 7,934