internet-explorer-11

IE 11 Bug - Image inside label inside form

浪子不回头ぞ 提交于 2019-12-09 14:04:19
问题 In IE11, the following piece of code will check the radio button as expected: <input type="radio" id="myRadio" /> <label for="myRadio"> <img src="..." /> </label> Wrapping a <form> around the above will however break the functionality of the label. This SO post offers a solution to the problem by styling the image with pointer-events:none , and the label as a block-level element. While that should of course not even be necessary, it also disables the ability to handle mouse events. It would

IE 11 Script1002 Array.Filter(x => …) (Arrow functions)

邮差的信 提交于 2019-12-09 05:01:38
问题 I get a error message in IE11 but not in chrome the error is: Script1002 Syntax error My code is as follows var selectedRoles = vm.roles.filter(x => x.id === role.id); The line and column number of the error suggest that it is the arrow function => that IE11 does not like. However it works fine in Chrome and Edge 回答1: ie 11 not support arrow functions try var selectedRoles = vm.roles.filter(function(x) { return x.id === role.id; }); 回答2: IE not supported arrow function check browser

flex property not working in IE

那年仲夏 提交于 2019-12-09 03:24:33
问题 I have been unable to determine why flexbox is not working in IE 11. For testing, I sourced a very simple flexbox layout from CodePen and have pasted the information below. Chrome works as intended; IE11 fails. Image of layout-success running on Chrome: Image of layout-failure on IE11 body { background: #333; font-family: helvetica; font-weight: bold; font-size: 1.7rem; } ul { list-style: none; } li { background: hotpink; height: 200px; text-align: center; border: 2px solid seashell; color:

Internet Explorer Returning Wrong Length of String [duplicate]

非 Y 不嫁゛ 提交于 2019-12-09 02:55:05
问题 This question already has answers here : ToLocaleDateString() changes in IE11 (5 answers) Closed 3 years ago . I've ran into a possible bug with IE where calling the JavaScript . length function returns a value that is off by 1 if/when the string was derived from .toLocaleString() . var d = new Date(); var locale = navigator.language; var month = d.toLocaleString(locale, { month: "long"}); // month.length will return the length of the month string +1 //(eg: if month = "March", month.length

Bootstrap 4 IE 11 does not work

自闭症网瘾萝莉.ら 提交于 2019-12-09 02:30:09
问题 so I have the problem, that my whole website does not work in IE 11. I don't get why because officially IE 11 should be supported by bootstrap 4... Website: www.ergotherapie-klinkicht.de I'm a bit helpless right now, because I don't know where to start. Did I miss something for IE 11 to inlcude in my code? In Firefox, , Edge, Chrome and Safari it works just fine... Because right now, I have the feeling that bootstrap 4 is not compatible for IE 11 at all... Thanks for any reply! this is my

can not disable Ctrl+O by JavaScript in IE 11

帅比萌擦擦* 提交于 2019-12-08 19:14:22
问题 I'm trying to disable Ctrl+o key combination in IE, the following code works fine in all IE versions except IE 11 unless I do an alert as you see in code below: document.onkeydown = function(event) { var x = event.keyCode; console.log(event.keyCode); console.log(event.ctrlKey); if ((x == 79) && (event.ctrlKey)) { if(navigator.userAgent.match(/rv:11.0/i)){ alert('Disabled'); } event.cancelBubble = true; event.returnValue = false; event.keyCode = 0; event.stopPropagation(); event.preventDefault

SSRS2008 ASP.NET ServerReport fails on IE11 with OEM UserAgent

那年仲夏 提交于 2019-12-08 19:09:28
I am rendering a SSRS ServerReport to PDF and in the ReportViewer WebForm Control in a ASP.NET 3.5 Application with a SQL Server Report Service 2008. Some people using Internet Explorer 11 reported that they cannot open generated PDF files or see anything in the viewer. The rendering fails with this error: library!ReportServer_0-403!7c8!01/02/2014-11:07:37:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: , Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: Interner Fehler beim Berichtsserver. Weitere Informationen finden

springboot- react application not working in internet explorer 11 and 9

不想你离开。 提交于 2019-12-08 18:38:29
My react app is not working on Internet explorer 11. It is working fine on edge and chrome. when I connect my application through Node.js, react build folder it is working fine IE 11 and 9. through node server port it is working. now I'm using spring boot but it is not working in IE11 and 9. I have deployed my react app in IIS. I have created my application through npx create-react-app .( As pointed out in the other answers for similar questions) I have included this in both my index.js file but it does not work. and installed polyfills in my app https://www.npmjs.com/package/react-app

array.sort() does not work in IE 11 with compareFunction [duplicate]

怎甘沉沦 提交于 2019-12-08 15:58:16
问题 This question already has answers here : How to sort strings in JavaScript (11 answers) Sorting in JavaScript: Shouldn't returning a boolean be enough for a comparison function? (2 answers) Closed 5 years ago . I'm sorting an array following JavaScript Array sort() Method. When I use a compareFunction parameter, Internet Explorer 11 is not sorting properly. I have a team array with players. These players have names: var team = [ {name:"Waldo"}, {name:"Sarah"} ]; But I want to display them at

Sprite animation wobbly / jumping in IE11

心不动则不痛 提交于 2019-12-08 15:22:30
I built a semi-transparent sprite png which can be found at https://www.srf.ch/static/srf-data/test_sprite.png It is a 17280px high and 910px wide png (30 * 576 = 17280) - everything seems correct. I now want to loop through each frame (it should be a map of slightly moving points) with CSS3 keyframes using background-position . I adapted an example from https://builtvisible.com/3-logical-alternatives-to-animated-gifs/ (see http://codepen.io/tombennet/pen/oxmaLd ) I can reproduce that example, when I try to adapt it to my needs (i.e. my sprite), I get this: http://codepen.io/anon/pen/rmwwMG