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

All Questions

0 votes
0 answers
90 views

SCRIPT5009: 'BMapGL' is undefined on IE11

Here is the code // src: https://lbsyun.baidu.com/jsdemo.htm#aCreateMap <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta ...
tek ted's user avatar
0 votes
0 answers
330 views

Alternative to Internet Explorer/ActiveX for creating a username/password prompt popup?

For several years now, I've been using the Javascript function below to have Internet Explorer generate a username and password prompt by using ActiveX. Now that Internet Explorer is about to be ...
Leslie's user avatar
  • 618
0 votes
1 answer
163 views

How to assign Object assign and map function together in IE 11

I have sample code that works fine in Chrome but IE11 has problem because of Object.assign method and => sign. Here is my code below and I don't know how to design it for IE11: let dictionary = ...
Himelu5's user avatar
  • 15
0 votes
1 answer
405 views

"Permission Denied" error in IE doesn't seem to match the javascript code

Running in IE is a legacy app built with frames that makes alot of references cross-frame like parent.header.blah.blah and parent.sidebar.so.and.so. Worked fine in old IE compatibility mode. Works ...
Entropy's user avatar
  • 1,281
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
0 answers
33 views

ReactJS+ IE+ Function expected

Reactjs application is not working on IE11 Please find my package.json and index.js file below, index.js file : import 'react-app-polyfill/ie9'; import 'react-app-polyfill/ie11'; import 'react-app-...
hetal gohel's user avatar
0 votes
1 answer
160 views

Tabulator.js - IE11 - "Error: Unspecified error. .."

I have no idea what is wrong with this code: import 'promise-polyfill/src/polyfill'; import Tabulator from 'tabulator-tables'; export default class Table { constructor(tableElement) { this....
CHELposE's user avatar
1 vote
2 answers
83 views

Why notification message is not supporting in IE11 any technical reason

Anyone can explain technically why the notification message is not supporting in the IE11 browser. The reason is IE11 browser engine(Trident, Chakra) or any other reason? var permission = Notification....
Saran S's user avatar
  • 21
1 vote
2 answers
504 views

Find parent "SVG" element in Internet Explorer

var HELPERS = { getElem: function($this) { return HELPERS.findAncestor($this, "svg"); }, findAncestor: function (el, sel) { while ((el = el.parentElement) && !((el.matches || el....
old_padawan's user avatar
0 votes
1 answer
1k views

What is the problem with D3js working with Internet explorer 11

I am creating an SVG donut chart using D3js v4 library, and it works fine with Google chrome but it doesn't work at all with IE11 I tried to to put the code in this Codepen 'https://codepen.io/ohmto/...
Hemmat's user avatar
  • 1
1 vote
2 answers
368 views

Var with {} break IE 11 [duplicate]

Im having an issue using slideToggle as a variable on my website. Im using domSlider. When I try the following I get issues I cannot understand. If define slideToggle as: var {slideToggle} = window....
Mikkel Fennefoss's user avatar
1 vote
1 answer
3k views

Converting a JavaScript file with Babel for use in IE11

I have a JavaScript file mystuff.js which throws errors in IE11 (due to for..of loops, etc). So I try to convert it with Babel for use in IE11. However the output from Babel does not seem to be IE11-...
halloleo's user avatar
  • 9,954
2 votes
1 answer
4k views

How can I make JavaScript modules work in IE 11

I have JavaScript modules which I want to use with IE11. In the HTML pages they are referenced like this: <script type="module"> import * as mystuff from './scripts/mystuff.js'; ...
halloleo's user avatar
  • 9,954
0 votes
1 answer
256 views

How to forward search and reverse search for a character in a HTML document without using TextRange API in IE11/Edge

We have a two column HTML layout. I want to implement forward search and backward search for a particular character in HTML, Like the "$" character in IE11 enter image description here Earlier in ...
Sheshanth's user avatar
-1 votes
2 answers
325 views

IE default version is changed to 7 automatically

i have added the bellow piece of code in my js file. var meta = document.createElement('meta'); meta.httpEquiv = "X-UA-Compatible"; meta.content = "IE=edge, IE=11, IE=10, IE=9"; document....
abdul raheem's user avatar

15 30 50 per page
1
2 3 4 5
23