internet-explorer-11

The window object does not have the properties attached to it by the page that created it

懵懂的女人 提交于 2019-12-08 01:49:14
问题 I use the window.open(url, target) to open a url in a new tab/window. Before doing that, I set some properties on the newly opened window object with the intention of passing data from this page, the creator of the new window, to the newly created window. In all browsers except Internet Explorer, the code works fine. The newly created page is able to read back the properties from the global window object representing its window. However, only in Internet Explorer 11, the window object in the

jquery ajax hits error callback before getting response from the server - IE11

孤街醉人 提交于 2019-12-08 00:39:21
问题 I make an async ajax call to the server, but the error callback is hit before getting response from the server (I can see it using fiddler): $.ajax({ url: 'Login.aspx/AuthenticateRegularUser', type: 'POST', contentType: 'application/json; charset=utf-8', async: true, dataType: "json", data: '{ "emailAddress": "' + emailAddress + '","password": "' + password + '","verificationCode": "' + verificationCode + '" }', success: function(Result) { if (Result != "") { var ClientResponse = JSON.parse

using jquery scroll on ie11 issues with jittery elements

二次信任 提交于 2019-12-07 19:46:26
问题 I just encountered a strange issue on ie11. I am trying to create a fixed element that will scroll along with window scroll. $(window).scroll(function() { var scrollY=$(this).scrollTop(); $('.myelem').css('transform', 'translateY(' + scrollY + 'px)'); }); I have also created a fiddle of this: https://jsfiddle.net/fyngwnz6/1/ (This is for replicating the issue, I know this particular case could be solved with a fixed element) The code works flawlessly with no performance issues on every

How to reliably convert XML to String in IE 10/11?

亡梦爱人 提交于 2019-12-07 17:58:33
问题 Namespaces are not being properly preserved by IE 10 and IE 11 when parsing XML with jQuery and converting back to string. Is there another accepted means of doing this in IE 10/11, aside from writing my own stringify code? Here is the code I am using, which I've also made a fiddle: http://jsfiddle.net/kd2tvb4v/2/ var origXml = '<styleSheet' + ' xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"' + ' xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

IE 11 :after background size not working

故事扮演 提交于 2019-12-07 16:12:29
I added a background-image inside the pseudo :after ::after { content: ''; display: block; position: absolute; right: -2.5rem; bottom: -1.5rem; height: 9.5rem; width: 9.5rem; background-image: url('../img/icons/icon_logo.svg'); background-repeat: no-repeat; // background-size: 100% auto; background-size: cover; } But the image is way bigger than the actual size of the box. Any idea how to solve this? (Working fine in webkit browsers) !!!Additional Information: I tried other svg and it works great. Works: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64"> <path

react with IE11 is not working, displaying blank screen

大城市里の小女人 提交于 2019-12-07 15:46:29
问题 when trying to load application in IE11 it just shows blank screen and errors with syntax error on this line class App extends __WEBPACK_IMPORTED_MODULE_0_react__["Component"] { my package.json { "name": "ccp-react", "version": "1.0.0", "license": "MIT", "scripts": { "start": "webpack-dev-server", "build": "webpack" }, "private": true, "dependencies": { "babel-plugin-lodash": "^3.3.2", "babel-preset-es2015": "^6.24.1", "babel-preset-react-optimize": "^1.0.1", "babel-preset-stage-1": "^6.24.1"

history.pushState disappears in IE 11

五迷三道 提交于 2019-12-07 15:02:12
问题 There is a site http://www.pionart.pl which is a good illustration of the problem I have with the current site I develop with almost the same code/CMS When I enter the site with IE 11, the browser forgets half of the history methods, incl. history.pushState() (you can easily check it by invoking the console with F12 and typing history.) When I enter http://stackoverflow.com in the same tab, IE suddenly remembers all the methods back. The question: what is the purpose of the "forgetting"? How

ArcGIS JavaScript API 3.9 - mouse-drag events don´t work in Internet Explorer 11

走远了吗. 提交于 2019-12-07 12:18:32
问题 I am facing a problem with mouse-drag event form ArcGIS API for JavaScript 3.9 in Internet Explorer 11 The code is below: map.on("mouse-drag", zobraudalost); function zobraudalost() { alert("test"); } The problem is that, this event doesn´t fire at IE 11 (as well as mouse-drag-start, mouse-drag-end). But on the other browsers it works fine (IE9, Firefox, Chrome). The other problem is that other mouse events (click, mouse-move, etc) work fine on IE 11, so the problem is only with the mouse

Babel not transpiling chunk-vendors for IE11, in Vue-CLI project

橙三吉。 提交于 2019-12-07 12:08:56
问题 I have a Vue-CLI webapp that needs to support IE11. In package.json we have set: "browserslist": [ "> 1%", "last 2 versions", "not ie <= 8", "ie 11" ] and this seems to work for the generated app.x.js files: they don't contain any ... operators for instance. However, the generated chunk-vendors.x.js do contain ... operators, and hence fail on IE11. Relevant parts of the package.json: "devDependencies": { "@vue/cli-plugin-babel": "^3.3.0", "@vue/cli-plugin-eslint": "^3.3.0", "@vue/cli-service"

On class update, SVG image as background in CSS does not appear in IE11

梦想与她 提交于 2019-12-07 11:40:35
问题 Problem: On page load, for a button, SVG which is being called in CSS background appears. On some event, I apply a class and to it call another SVG in CSS background. However that new SVG does not appear. If in debugger, I try to toggle the background, it then starts appearing. What am I missing to get this working in IE11? In Below picture, we are using <button> tag. On some event, the background SVG is changed. CSS Code .buttonIcons{ .svgicon-fields-add{ background-image:url('../assets