internet-explorer-11

Are Web Components actually useable in IE11 and Edge?

回眸只為那壹抹淺笑 提交于 2021-02-05 20:19:25
问题 Web Components are the hot new thing, and a true web standard, everybody is talking about them and presumably using them, and they seemed like the perfect solution to a problem we have (sharing components across very different sites). So we build a couple of web components. The work fine in Chrome, but not in IE11. Use polyfills maybe? https://www.webcomponents.org/polyfills has a ton of polyfills, but IE11 keeps complaining about class . Compile down to ES5 perhaps? Various sources claim

Are Web Components actually useable in IE11 and Edge?

一笑奈何 提交于 2021-02-05 20:18:15
问题 Web Components are the hot new thing, and a true web standard, everybody is talking about them and presumably using them, and they seemed like the perfect solution to a problem we have (sharing components across very different sites). So we build a couple of web components. The work fine in Chrome, but not in IE11. Use polyfills maybe? https://www.webcomponents.org/polyfills has a ton of polyfills, but IE11 keeps complaining about class . Compile down to ES5 perhaps? Various sources claim

html - CSS Opacity different than 1 or 0 not working in IE11

ぐ巨炮叔叔 提交于 2021-02-05 10:10:36
问题 I'm facing an issue with the css property opacity, with Internet Explorer 11. The code is very simple: <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <style> div{ width:100px; height: 100px; background: blue; } #d1{ opacity: 1; } #d2{ opacity: 0.7; } </style> </head> <body> <div id='d1'>df</div> <div id='d2'>trtret</div> </body> </html> On IE11, the opacity setting doesn't work for the second div. All others browsers are fine. I'm using Apache server through local uWamp

html - CSS Opacity different than 1 or 0 not working in IE11

拜拜、爱过 提交于 2021-02-05 10:06:56
问题 I'm facing an issue with the css property opacity, with Internet Explorer 11. The code is very simple: <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <style> div{ width:100px; height: 100px; background: blue; } #d1{ opacity: 1; } #d2{ opacity: 0.7; } </style> </head> <body> <div id='d1'>df</div> <div id='d2'>trtret</div> </body> </html> On IE11, the opacity setting doesn't work for the second div. All others browsers are fine. I'm using Apache server through local uWamp

html - CSS Opacity different than 1 or 0 not working in IE11

三世轮回 提交于 2021-02-05 10:06:08
问题 I'm facing an issue with the css property opacity, with Internet Explorer 11. The code is very simple: <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <style> div{ width:100px; height: 100px; background: blue; } #d1{ opacity: 1; } #d2{ opacity: 0.7; } </style> </head> <body> <div id='d1'>df</div> <div id='d2'>trtret</div> </body> </html> On IE11, the opacity setting doesn't work for the second div. All others browsers are fine. I'm using Apache server through local uWamp

IE opening new tab about:blank instead of Webpage

邮差的信 提交于 2021-02-05 09:48:07
问题 I am developing a BHO for IE in C# that controls the navigation flow of IE by checking the URL in onBeforeNavigateEvent. Everything works fine except that when a link is opened in a new tab then some of the tabs opened as About:Blank. I have checked the logs and also debugged the BHO no exception is thrown. However in the case of About:Blank BHO is initiated SetSite and GetSite methods are called but navigation event is not fired. Also it happens when links are opened in new tab rapidly. For

IE opening new tab about:blank instead of Webpage

爱⌒轻易说出口 提交于 2021-02-05 09:48:05
问题 I am developing a BHO for IE in C# that controls the navigation flow of IE by checking the URL in onBeforeNavigateEvent. Everything works fine except that when a link is opened in a new tab then some of the tabs opened as About:Blank. I have checked the logs and also debugged the BHO no exception is thrown. However in the case of About:Blank BHO is initiated SetSite and GetSite methods are called but navigation event is not fired. Also it happens when links are opened in new tab rapidly. For

Selenium WebDriver - Unable to drag and drop element in IE11

≡放荡痞女 提交于 2021-01-29 09:55:51
问题 I am trying to drag and drop an element from side panel to form. Drag and drop code what I wrote is like below. Actions builder = new Actions(driver); builder.dragAndDrop(source, target).build().perform(); This works fine in all browser except IE11. I tried other approaches like Approach 1 - builder.clickAndHold(source) .moveToElement(target) .release(target) .build() .perform(); Approach 2 - builder.clickAndHold(source) .pause(Duration.ofSeconds(1)) .moveByOffset(-1, -1) .pause(Duration

CSRF issue with Microsoft Edge and IE11

混江龙づ霸主 提交于 2021-01-28 19:01:10
问题 I have a CSRF token issue that only occurs in MS Edge and IE11 - it works fine in Chrome, Firefox and even IE9. The problem only occurs when doing Http post via Ajax. It gives me Http403 forbidden error. I have followed the guide in Django here: https://docs.djangoproject.com/en/1.7/ref/contrib/csrf/ Do I need to add some extra headers for IE11 / MS Edge? Has anyone else encountered this problem? 回答1: 2 hours later, and I found the answer myself... To those who might have the same issue with

IE11 moves cursor to beginning of input text when editing/focus/tab/onblur on the element

孤者浪人 提交于 2021-01-28 11:20:27
问题 I am using input type text box with pre populated values and when I click on the input box the position of the cursor is moving to the start which is not happening in other browsers(only IE11 is the issue present). It's very annoying and spent hours debugging . In fact debugging in IE is very pain. Please note I do not want to manipulate the DOM and we are not suppose to use Jquery anymore in our application. I am using react Js as UI framework. It would be great if someone give some hint on