internet-explorer-11

IE11 border radius and border bug

孤者浪人 提交于 2019-11-30 07:56:29
问题 I have an odd visual bug in IE11 as you can see in image here > (source: jonwallacedesign.biz) See the odd effect on corners of the white "WHY USE US" li button.... The combination of border-radius , background-image and border: 1px solid #colour seems to be creating this odd horrid effect. Anyone know of a solution to fix? CSS of the LI is: background-image: url("../images/core/primnavItemBG_sprite.png"); background-position: 0 0; border: 1px solid #FFFFFF; border-radius: 6px; box-shadow: 0

Accessing JavaScript Global Object from IE COM

馋奶兔 提交于 2019-11-30 07:52:26
问题 Looking at Compatibility changes in IE11, we have that window.execScript is replaced with eval. Now when using the IE COM object how can we get hold of the JavaScript Global Object that has the eval function? PowerShell: $ie = New-Object -COM InternetExplorer.Application $document = $ie.document $window = $document.parentWindow # How to get JavaScript Global Object from these? See also this related question. 来源: https://stackoverflow.com/questions/26023915/accessing-javascript-global-object

IE11 flexbox preventing text wrapping? [closed]

做~自己de王妃 提交于 2019-11-30 06:01:16
I am developing a site which displays OK in the latest versions of Firefox/SeaMonkey/Chrome, but interestingly in IE11 there is a rendering problem: http://devel.gooeysoftware.com/mozaddons/switching.php If you load this in IE11, the "Switching from Firefox to SeaMonkey" menu item along the left does not get its text wrapped to the size of the containing DIV, but instead overflows. I can't see why this is. Is it just a bug in IE11 or am I missing some CSS to get it to wrap? UPDATE: Looks like they fixed a bunch of the IE11 flexbox rendering bugs in Edge. IE11: Edge: Found this easy fix in the

Why is IE 11 not rendering :after element, showing css as crossed out in dev tools?

◇◆丶佛笑我妖孽 提交于 2019-11-30 04:23:29
问题 I have an angular app with two font icons in a given screen. These are rendered just fine in chrome, firefox and edge, but on IE 11 they do not display. The icons are to be rendered as the content of the :after pseudo class, which according to my research should work fine on IE 9 and up. However, on IE, these are simply not rendered. As you can see in the screenshot, the :after element is not in the DOM displayed in the dev tools, and the css is correct but shows crossed out in dev tools: The

IE 11 browser recognizes itself as Mozilla [duplicate]

这一生的挚爱 提交于 2019-11-30 04:07:47
问题 This question already has answers here : Get browser name by jquery (3 answers) Closed 5 years ago . I am working on MVC application, .net 4.5 framework, VS 2010. I have a piece of Javascript code that identifies which browser the application is running. If the browser is Firefox then a particular block of code will be executed if not another block code will get executed. With IE 11 I am having a weird problem. The browser (ie 11) recognizes itself as Mozilla. javascrip code : if ($.browser

Viewport for IE10 & 11 desktop, but not mobile

社会主义新天地 提交于 2019-11-30 03:57:15
问题 I build a lot of responsive sites. I'd like to support IE10 and IE11's snap modes, but I can't do it fully without breaking support for Windows Phone 8. This is the code I'm currently using, in my CSS: @media screen and (max-width:400px) { @-ms-viewport{ width: device-width; } } It works alright, but if IE10/11 isn't snapped to the smallest position possible, the site displays as zoomed out. If I get rid of the media query, it displays correctly in IE10/11 on desktops and tablets, but it

IE 11 error - Access is denied - XMLHttpRequest

耗尽温柔 提交于 2019-11-30 03:38:34
问题 I'm having a peculiar error with IE11 and ajax. For nearly all the requests I make using the code below, everything is fine, yet when I try use in conjunction with a copy+paste method, it returns an Access is denied error. So to summarise This code works normally in most browsers for all functions I have written In IE 11 + Windows 8.1, it works in most cases, except when running a particular copy and paste function Interestingly, when using IE 11, but with a different Document mode such as 8,

Displaying binary file (pdf) in IE 11

不羁的心 提交于 2019-11-30 02:03:55
问题 I am trying to display a binary file using the method suggested in this post AngularJS: Display blob (.pdf) in an angular app. This is working nicely in Chrome and FF, but IE 11 is giving me "Error: Access Denied". Does anyone know if it has something to do with the Blob object and can point me in the right direction? Here is my js code: $http.get(baseUrl + apiUrl, { responseType: 'arraybuffer' }) .success(function (response) { var file = new Blob([response], { type: 'application/pdf' }); var

What happened to “Always refresh from server” in IE11 developer tools?

我是研究僧i 提交于 2019-11-30 01:05:33
Do the F12 developer tools in Internet Explorer 11 also have the "Always refresh from server" feature of the developer tools in IE 8-10? I see the "Clear browser cache... (Ctrl + R)" button on the Network tool , but clicking on it appears to do nothing (the Temporary Internet Files folder still has files in it afterward). I also have the "Check for newer versions of stored pages:" setting set to "Every time I visit the webpage", but this does not appear to always refresh external assets. Can the cache be completely disabled in IE 11 for development? For now I am just holding down the Ctrl key

Forcing IE 11 to behave as IE 10

我怕爱的太早我们不能终老 提交于 2019-11-29 23:04:15
We've run into an unusual bug with Internet Explorer and we need to force IE 11 to behave as IE 10 (since this bug is not present in IE 10). I have tried the following: <meta http-equiv="x-ua-compatible" content="IE=10"> but unfortunately this does not work and I have not found anything relevant or helpful from Google searches or the docs. So how do we get IE 11 to behave as IE 10? Marco Demaio Do the following: The correct meta string is: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10"/> ( I added it just below the <title> . Preserve case, IE crappy code might be also case