internet-explorer-11

How can I get the WebBrowser control to show modern contents?

…衆ロ難τιáo~ 提交于 2019-12-25 03:08:36
问题 I've created a Winforms app that uses a WebBrowser control; I dynamically assign its Uri. It worked fine for awhile, but now I'm getting this msg: You seem to be using an unsupported browser. Older browsers can put your security at risk, are slow and don't work with newer Google Maps features. To access Google Maps, you'll need to update to a modern browser. The last two words are a link, and following that link, I see: You are currently using... IE 11 So, okay, the WebBrowser component uses

IE vertical centering bug with table-cell parent and absolutely positioned pseudo-element

戏子无情 提交于 2019-12-25 01:14:56
问题 I'm building a flexible progress-bar with a number of constraints. It needs to be able to contain any number of items within it, have these items all be the same width, vertically centered, support content of varying lengths, work in IE9 and above and have an icon next to them without any additional markup. display: table-cell seemed to be the most appropriate solution for the potentially unlimited number of items inside as well as vertically aligning the text nicely, and :before would take

Add PolyFill.js in AngularJS application

Deadly 提交于 2019-12-24 23:33:15
问题 WE are embedding PowerBi JavaScript SDK in angularJs App. PowerBI Javascript SDK makes use of the Promise. IE 11 do not support Promises. Lot of posts directed me to make use of ployfill.js for the same. My Question is how do I Inject PolyFill.js file in angularjs app? 回答1: If you are using Webpack for bundling, add the polyfill.js before your main entry script. module.exports = { entry: ['polyfill.js', './main.js'] }; If you are using script tags in html, make sure to include the script

Ag-Grid IE11 / React / WebPack does not load properly

爷,独闯天下 提交于 2019-12-24 23:30:36
问题 I am getting this error when I try out a simple rendition of ag-grid. The error occurs only in IE11. FF/Chrome/Edge are OK. Unable to get property 'addEventListener' of undefined or null reference Looks like it has something to do with how Webpack is bundling the scripts. Haven't been able to figure this one out. Any help is appreciated. Thanks. Update 2018-07-02 The order of my vendor and app files was incorrect. When I fixed the order, the grid issue was resolved, but it caused other (more

How can i fix IE image and column flexbox bug?

不羁岁月 提交于 2019-12-24 20:23:54
问题 I've made a resizable template using bootstrap4 css. In OK in all browsers except IE 11.0. To be sure .d-flex class doesn't works properly (I've used it to make all of my columns of the same height). Googling for solution doesn't make progress. If I remove this class all seems to be OK except the same height of columns. But the most interesting thing happens with images - they really displayed at full size in ie. Also tried different fixes from here - Bootstrap Image Responsive messed up on

Internet Explorer 11 - AJAX Call not firing

北城余情 提交于 2019-12-24 18:12:09
问题 I am stuck in the middle of a bug. I began to use BrowserStack to validate my current project against Windows IE and EDGE and I got a particular issue with IE 11. I first got an issue that I solved which was that FormData did not have any .get() methods, and I used the NPM formdata-polyfill for that. I am working on a native JS login form, using FormData and XMLHTTPRequest, and it seems that the AJAX call is not firing at all. When clicking on the submit button, instead of sending to my

Ghostly 'border' appears with border-radius in IE11 and Edge

霸气de小男生 提交于 2019-12-24 16:25:09
问题 In IE11 and Edge (on Windows 10), the following HTML/CSS displays a strange, transparent border where there shouldn't be. <!DOCTYPE html><html> <head> <style> body { background-color:red; font-size: 10pt; } .menu { background-color: #5f6062; overflow:hidden; /* To contain floats */ box-sizing: content-box; } .right-menu { float:right; margin:auto; padding:0 0 0 20px; list-style: none; } .spacer { background-color: #ffffff; height: 20px; } .content { background-color: #ffffff; border-radius:0

Attribute matchers in CSS don't work with IE11

◇◆丶佛笑我妖孽 提交于 2019-12-24 15:16:08
问题 We noticed on our website that the CSS was broken with IE11, while it worked fine with IE10. After a look at the CSS source, it turns out that IE11 (it seems) has dropped its support for attributes matchers: we tried on our VM, we tried on BrowserStack, and the result is that these rules... img[src$='separator.png'] { display: none; } a[href="javascript:addBookemart()"] { text-decoration: none; } ... do work on IE10, but not anymore on IE11. I find it hard to believe that the support for this

IE11 XMLRequest Access is Denied

雨燕双飞 提交于 2019-12-24 12:44:17
问题 I tried to do a simple AJAX request on http://localhost:8080/ and I get an error right away when using IE 11. I don't think IE is even trying to send anything. Did somebody meet this issue? Here is a fiddle showing this behavior, html: <button id='btn1'>launch</button> onLoad: var xhr,btn=document.getElementById('btn1'); btn.onclick=onButton; var onReadyState=function(){ console.log('ready state:'+_xhr.readyState); if(xhr.readyState===4){ console.log('status:'+_xhr.status); } } function

Angular on IE 11 intranet - programmatically disable Compatibility View

£可爱£侵袭症+ 提交于 2019-12-24 11:36:11
问题 I'm running an Angular 6 app on company intranet via IE11 . My app compiles to ES5 according to tscnfig.json . I've uncommented and installed all of the IE compatibility lines in polyfills.js . I've also added the suggested meta tag <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> just below my <head> tag. None of this had had the intended behavior of programmatically disabling IE's default Compatibility View settings. By default, IE11 displays intranet sites in Compatibility View ,