internet-explorer

How to prevent SVG elements from gaining focus with tabs in IE11?

不问归期 提交于 2020-06-10 02:20:40
问题 There is an inline SVG element among my HTML form elements. When I navigate through my elements with the Tab key, the SVG element gets focused, in IE11 only, even if the SVG element has the tabindex="-1" attribute set to every element inside it: <svg width="20px" height="20px" tabindex="-1"> <g tabindex="-1"> <circle cx="8.5" cy="8.5" r="7.75" stroke="#999" stroke-width="1" tabindex="-1" /> […] </g> </svg> To be sure that it's focusing on that element, I call document.activeElement in the

Internet Explorer or Edge:- How To display the warning that appear if you open Custom Protocol Handler again

痴心易碎 提交于 2020-06-02 15:02:41
问题 When i click on a custom link such as foo:\ , and there is already a registered protocol handler on windows machine, Internet explorer or Edge display a warning before allowing user to run the custom protocol handler, but if the user select to not display this warning again, the Internet explore(Edge) run the protocol handler without displaying the warning. My question is how reset my selection again and make Internet Explorer or Edge display the warning again. 回答1: If the name of your

Internet Explorer or Edge:- How To display the warning that appear if you open Custom Protocol Handler again

烈酒焚心 提交于 2020-06-02 14:55:00
问题 When i click on a custom link such as foo:\ , and there is already a registered protocol handler on windows machine, Internet explorer or Edge display a warning before allowing user to run the custom protocol handler, but if the user select to not display this warning again, the Internet explore(Edge) run the protocol handler without displaying the warning. My question is how reset my selection again and make Internet Explorer or Edge display the warning again. 回答1: If the name of your

Internet Explorer or Edge:- How To display the warning that appear if you open Custom Protocol Handler again

假如想象 提交于 2020-06-02 14:54:47
问题 When i click on a custom link such as foo:\ , and there is already a registered protocol handler on windows machine, Internet explorer or Edge display a warning before allowing user to run the custom protocol handler, but if the user select to not display this warning again, the Internet explore(Edge) run the protocol handler without displaying the warning. My question is how reset my selection again and make Internet Explorer or Edge display the warning again. 回答1: If the name of your

Internet Explorer or Edge:- How To display the warning that appear if you open Custom Protocol Handler again

▼魔方 西西 提交于 2020-06-02 14:54:15
问题 When i click on a custom link such as foo:\ , and there is already a registered protocol handler on windows machine, Internet explorer or Edge display a warning before allowing user to run the custom protocol handler, but if the user select to not display this warning again, the Internet explore(Edge) run the protocol handler without displaying the warning. My question is how reset my selection again and make Internet Explorer or Edge display the warning again. 回答1: If the name of your

Map(iterable) alternative for IE 11

元气小坏坏 提交于 2020-05-27 12:41:05
问题 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 iterable constructor the Map is empty. I couldn't find a polyfill or anything else for this. Does anyone have an easy way of fixing this? Afterwards I use the map like this: map.forEach((maps: ITopoInterface[], key: string) => { maps.findIndex((t: ITopoInterface) => { //do stuff }); }); 回答1: You say this

Detect if page is load from back button

半世苍凉 提交于 2020-05-25 03:28:30
问题 Is there any way to detect if current page came from back button? I want to load data from cookie only if current page came from back button. 回答1: When a user goes back a page, any visible form data is preserved, while any JavaScript variables are reset. I say 'visible' form data, as hidden fields seem not to be preserved, but invisible inputs are. You can use this to your advantage in order to detect whether the page was an initial load, or had already been loaded previously such as from a

Internet Explorer 10+ media queries and responsive break points

家住魔仙堡 提交于 2020-05-23 07:47:13
问题 I am trying to combine an IE10+ specific media query with a max-width page break point. I am pretty sure they can be combined but am not sure how to do it. Here is the original IE10+ only css media query: @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* IE10+ CSS styles go here */ } Here is my feeble attempt at combining them: @media (-ms-high-contrast: none), (-ms-high-contrast: active), only screen and (max-width: 950px) { /* IE10+ CSS styles go here */ } The IE

Getting Object doesn't support property or method 'entries' error even when I am adding polyfill

夙愿已清 提交于 2020-05-17 06:05:31
问题 I am trying to load my web application on IE11 with the following browserslist configuration in package.json "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ ">0.1%", "not dead", "not op_mini all" ] } and with the following statements at the beginning of src/index.tsx import 'react-app-polyfill/ie11'; import 'react-app-polyfill/stable'; But I get an error saying SCRIPT438: Object doesn't support property or method 'entries' . To overcome this I read

Monitor web sites visited using Internet Explorer, Opera, Chrome, Firefox and Safari in Python

谁说胖子不能爱 提交于 2020-05-13 23:34:29
问题 I am working on a project for work and have seemed to run into a small problem. The project is a similar program to Web Nanny, but branded to my client's company. It will have features such as website blocking by URL, keyword and web activity logs. I would also need it to be able to "pause" downloads until an acceptable username and password is entered. I found a script to monitor the URL visited in Internet Explorer (shown below), but it seems to slow the browser down considerably. I have