internet-explorer-11 Questions
2
I have an existing ESLint configuration with "ecmaVersion" set to "5" that I want to modify to allow the use of let and const which are ES6 features. There are mostly* supported in Internet Explore...
Inert asked 5/11, 2018 at 19:9
6
I have to test a product on Internet Explorer but when I try to start it always Edge browser is opened. I tried to set IE as default browser but did not help. I try to set Chrome or Firefox as defa...
Hulking asked 8/4, 2020 at 6:6
2
I've created a sample Angular app where I added only an input control to the view. In my project, I created my own file-uploader component.
I'm able to drag and drop the file in Chrome but cannot d...
Coacervate asked 17/4, 2019 at 11:3
8
Solved
So I have a problem with newer browsers saving passwords. Say I have a password box like so:
<input type="password" autocomplete="off" />
New browsers like IE11 and Safari in iOS 7.1 have ...
Definiens asked 17/3, 2014 at 14:43
4
Is it possible via any configuration option to tell JavaScript's XMLSerializer not to collapse empty tags into self-closing tags? I'm feeding an xml string into the xml parser then reserializing it...
Heder asked 29/11, 2012 at 21:17
3
I need to make my Angular project work on both IE11 and Edge, but a very simple hello world is not even showing in these two browsers.
Here's what I did:
npm version:
$npm -v
6.10.2
Angular v...
Whiny asked 5/8, 2019 at 16:8
4
Solved
I'm trying to evaluate an expression which contains power, in string as **. i.e. eval("(22**3)/12*6+3/2").The problem is Internet Explorer 11 does not recognizes this and throws syntax error. Which...
Croteau asked 11/7, 2017 at 6:9
2
Solved
To make SVGs responsive on our website with Internet Explorer 11 I am using the "Canvas Hack" by Nicholas Gallagher. This hack uses an extra canvas element to make use the SVG keeps the aspect rati...
Schuler asked 4/10, 2018 at 11:56
3
I can't remove inset borders from object elements in IE11. They don't appear in any other browser or version of IE as far as I can tell. See the attached screenshot. Setting border as an attribute ...
Kelle asked 6/4, 2015 at 20:2
5
Solved
Just stumbled upon an issue. When trying to detect IE 11 (the beta version currently on air) using Jquery, the result is 'firefox'. The same code detect IE 10. I need to know what browser the user ...
Rotten asked 8/9, 2013 at 13:16
1
Solved
I'm porting an app using tailwindcss to work with IE11. Unfortunately, tailwindcss insists on generating colors using the modern W3C CSS Color Module Level 4 rgb() syntax, which does not appear to ...
Triangulate asked 18/1, 2022 at 11:35
6
Solved
Objects are not valid as a React child (found: object with keys {$$typeof, type, key, ref, props, _owner, _store}). If you meant to render a collection of children, use an array instead or wrap t...
Prithee asked 30/11, 2016 at 20:51
2
Solved
So I am having an issue with ES6, Webpack and VUE JS in IE 11. This works in Edge, Chrome, Safari and Firefox, but not IE 11.
The error:
SCRIPT1002: Syntax error
vue.js (16,8498)
Ok, so whats a...
Sorosis asked 18/10, 2018 at 20:11
4
Like the title asks,
Certain tools I use rely on VBA code with Internet Control to web scrape and control IE pages. With the IE11 end of life coming next year does anyone have any understanding on ...
Illinois asked 14/9, 2021 at 13:56
10
Solved
I have the following array of object:
Objs[0] = {Name : "ABC"};
Objs[1] = {Roll : 123}
I'm trying to make it as the following:
Objs {
Name : "ABC",
Roll : 123
}
I attempted ...
Neville asked 7/2, 2017 at 13:52
3
Solved
Can anybody tell me why IE11 is throwing error at the last line -
this.document = this.control.value;
const bytes =
this.documentService.base64toBytes(this.document.documentBlob.documentData,
...
Homes asked 5/6, 2017 at 20:50
7
Our team has created an angular 9 new project and it is working perfectly fine on Google Chrome and Firefox but on IE11 I cant see anything.
I have tried everything on from the internet followed ev...
Ape asked 15/7, 2020 at 15:30
4
Solved
I have a fixed div on my page which is positioned with the following CSS properties:
width: 320px;
height: 160px;
position: fixed;
right: 15px;
bottom: 15px;
top: unset;
z-index: -1;
The div app...
Mirthamirthful asked 24/1, 2018 at 14:56
16
Solved
When I want to detect IE I use this code:
function getInternetExplorerVersion()
{
var rv = -1;
if (navigator.appName == 'Microsoft Internet Explorer')
{
var ua = navigator.userAgent;
var re =...
Conscionable asked 28/7, 2013 at 10:49
2
Solved
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 b...
Breathless asked 29/11, 2016 at 17:8
12
Solved
I know IE 11 has different user agent string than all other IE
Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv 11.0) like Gecko
I have tried to detect IE 11 with answer specified for this question...
Farceur asked 17/2, 2014 at 9:25
3
I have a very large javascript application, which contains mostly asm.js code (it's built upon urho3d c++ engine which is them compiled into asm.js).
It runs great on most browsers (chrome, firefo...
Freehearted asked 2/2, 2018 at 10:5
3
Solved
In Internet Explorer 11 (IE11), is there a way to move the F12 Tools window to be on the side instead of the bottom of the window?
I know I can unpin it and treat it like a regular window, but I l...
Covalence asked 26/1, 2014 at 21:14
2
I am trying to download some Excels files throught multiple Internet Explorer 11 windows at the same time by using Python and Selenium. The problem appens when the "Save As" Pop Up appears and the ...
Vituperate asked 2/6, 2020 at 16:22
2
I have the following HTML that can reproduce the issue I'm seeing. As I add/remove IFrames over time the browser is never releasing the IFrame memory. As a result the memory grows and grows overtim...
Polak asked 18/1, 2018 at 22:50
1 Next >
© 2022 - 2025 — McMap. All rights reserved.