internet-explorer

React app not rendering in IE 11 even with polyfills

无人久伴 提交于 2021-02-11 06:13:34
问题 I have a fully built React application that I would like to deploy on IE 11, but been having no success but a white page. For the sake of testing, I created a dummy app using npx create-react-app and attempted to launch on IE 11/Edge. Installing 'react-app-polyfill' and importing on 'react-app-polyfill/ie11' and 'react-app-polyfill/stable' on line 1 & 2 of index.js, I also included "last 1 ie version" in the browserlist.development inside the package.json file. Every resource online points to

VW not working correctly in IE9

两盒软妹~` 提交于 2021-02-10 07:14:59
问题 VW units are displaying strangely for me in IE9. For instance, a value of 10vw is enormous, taking up ~10 times the viewport width instead of a tenth. Setting the value to 0.1vw yields results closer to what is expected. What is strange is that I can find almost nothing on this issue, but I would have thought that if this is a real issue or incompatibility it would have been widely documented (and griped about). I'm using IE9 in a VM, so I don't know if that's the issue or not. This is a

VW not working correctly in IE9

萝らか妹 提交于 2021-02-10 07:14:46
问题 VW units are displaying strangely for me in IE9. For instance, a value of 10vw is enormous, taking up ~10 times the viewport width instead of a tenth. Setting the value to 0.1vw yields results closer to what is expected. What is strange is that I can find almost nothing on this issue, but I would have thought that if this is a real issue or incompatibility it would have been widely documented (and griped about). I'm using IE9 in a VM, so I don't know if that's the issue or not. This is a

VW not working correctly in IE9

只谈情不闲聊 提交于 2021-02-10 07:13:48
问题 VW units are displaying strangely for me in IE9. For instance, a value of 10vw is enormous, taking up ~10 times the viewport width instead of a tenth. Setting the value to 0.1vw yields results closer to what is expected. What is strange is that I can find almost nothing on this issue, but I would have thought that if this is a real issue or incompatibility it would have been widely documented (and griped about). I'm using IE9 in a VM, so I don't know if that's the issue or not. This is a

SVG animation is not working in Edge or IE

穿精又带淫゛_ 提交于 2021-02-10 06:34:05
问题 I have a checkmark SVG animation that works in Safari, Chrome, Firefox, etc but does not work in Edge and IE (surprise surprise). It seems as if the SVG is there but the strokes are not displaying. As far as I can tell both Edge and IE11 support what I am trying to do and I've used every prefix I can think of. CSS/HTML: .checkmark { position: relative; left: 50px; z-index: 1; opacity: 1; width: 22px; border-radius: 50%; display: inline; stroke-width: 6; stroke: #fff; stroke-miterlimit: 10;

Some Javascript is not working until hitting F12 in IE 11

旧城冷巷雨未停 提交于 2021-02-08 12:13:40
问题 The Javascript code is working correctly in Firefox and Chrome, but for IE(I am using 11),it's not working until I hit F12 for debugging. And there is also no error displayed in debugger in IE. Any idea why? The first function is to check if the browser support classList or not, apparently, IE doesn't support it. Here is the code: function checkClassListSupport() { var supportsClassList = ({}).toString.call(document.body.classList) == "[object DOMTokenList]"; return supportsClassList; } 回答1:

Some Javascript is not working until hitting F12 in IE 11

独自空忆成欢 提交于 2021-02-08 12:10:27
问题 The Javascript code is working correctly in Firefox and Chrome, but for IE(I am using 11),it's not working until I hit F12 for debugging. And there is also no error displayed in debugger in IE. Any idea why? The first function is to check if the browser support classList or not, apparently, IE doesn't support it. Here is the code: function checkClassListSupport() { var supportsClassList = ({}).toString.call(document.body.classList) == "[object DOMTokenList]"; return supportsClassList; } 回答1:

Internet Explorer, functions with arrays for parameters

老子叫甜甜 提交于 2021-02-08 10:20:28
问题 I have the function that works with edge and chrome, but not with IE (V 11.0.15063.0) item = totalsArray.find(function([[l,r]]) { return l === a && r === b }); But array.find does not work with IE so I have the polyfill from mdn as well https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find The error I get when I try running with polyfill is SCRIPT1010: Expected Identifier highlighting the first parentheses of function([[l,r]]) I cant seem to figure out

How to click on the save button when pop-up appears?

僤鯓⒐⒋嵵緔 提交于 2021-02-08 10:17:30
问题 I am using Internet Explorer to click on a file. I get to a point where an Internet Explorer pop-up appears saying "Do you want to open or save the file?": I want to write a VBA code that clicks on the save button. I realized it is not possible to right click and "inspect element" in order to show the HTML page because the pop-up is not part of the internet explorer webpage. So I tried the sendKeys method even though it is not reliable. I tried different options such as : Application.SendKeys

Using tokenize within a stylesheet used in a browser

十年热恋 提交于 2021-02-08 08:32:30
问题 I'm trying to assign a variable a certain token from a large string. I first tokenize the string, then for each token I check if it contains a certain substring. If it does, I want to assign that token to the variable. Lastly, I use that variable to set an attribute of a div. I've tried this code below, which gives me the exact output i want in oXygen XML Editor . However, when I run the XML/XSLT file in IE (11), it simply just prints out the entire original string, meaing xhtmlVar in the