internet-explorer-11

FileReader and JSON objects not defined in ie11

十年热恋 提交于 2019-12-01 07:12:59
Whenever trying to open a page running a javascript code using FileReader and JSON upon page initialization, ie11 reports "FileReader is not defined", and later "JSON is not defined". The head of HTML file is as follows: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>LogViewer</title> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <link rel="stylesheet" href="css/slick.grid.css" type="text/css"/> <link rel="stylesheet" type="text/css" href="css/style.css" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery

SSRS Report Viewer - Report chart fails to display in IE11

非 Y 不嫁゛ 提交于 2019-12-01 06:32:38
I have a report viewer control that show's a dashboard stye report. It has a few charts to give an overview, however when viewing in IE11 the report doesn't render at all and just shows up blank. The underlying stored procedure is being ran as well. I did some testing and Charts show up in Firefox (Current) Charts show up in Chrome (Current) Charts show up in IE Compatibility Mode. If I use the PDF export feature on my web viewer it's able to convert the original byte stream to the correct PDF with the charts, which meant the report ran properly. The underlying stored procedure only ran once

ASP.NET WebForms 4.0 Site with IE11 does not load ScriptResource for PageRequestManager on Windows Server 2003

社会主义新天地 提交于 2019-12-01 06:25:27
问题 I am having a problem with IE11 and ASP.NET Web Forms (.NET 4.0) that runs on Windows Server 2003. On IE11, the following script tag does not appear in the source HTML: <script src="/ScriptResource.axd?d=WYhXIHdkh3HFOMewc5Dscl74H0FlrdD4oOAIu08capt3uxzykhWmBntlCyp0ApmvoCoZjoSCP5s1mUjzhOe99tXFvkHJ2vmkIMEuekr4y9dZdi8--YB4rXK6XO-b-mgnKReGNiAy9wDYm6lNNWWtBg2&t=ffffffffbd2983fc" type="text/javascript"></script> And subsequently IE11 reports: Unable to get property 'PageRequestManager' of undefined

Internet Explorer DOM7009: Unable to decode image at URL: [url]

大憨熊 提交于 2019-12-01 06:00:03
I'm working with a SharePoint site in O365. The site includes a List/Library that contains nothing but employee images with .GIF extensions. A 3rd party process imported the images into SharePoint. I have no details on that process. None of the images will display in IE 11 when served from the SharePoint O365 server. The image will not display even when loaded by itself. The problem is not related to the amount or size of the images as this question discusses . The same exact images will display fine in IE 11 on an on-premise SharePoint 2010 server. Chrome, Firefox, etc display the image fine

IE supports forEach(…) when invoked fromthe console but not when called from the code

拈花ヽ惹草 提交于 2019-12-01 05:48:36
I'm running this snippet the console. In IE it produces the output just as expected. Running the same in Cr and FF for reference confirms the congruence of behavior. ["a", "b"].forEach(function(element) { console.log(element); }); However, when running the following script, I'm getting errors telling me that the object hasn't forEach(...) declared on it. The issue occurs in IE but not in Cr nor FF. var menus = document.querySelectorAll("ul.application>li>a"); menus.forEach(function(element) { ... } I've checked that the variable menus is declared and that picking it's elements produces what I

Unable to open IE11 driver instance using Selenium WebDriver with Java

六眼飞鱼酱① 提交于 2019-12-01 05:47:26
问题 System.setProperty("webdriver.ie.driver","C:\\Users\\IEDriverServer_Win32_2.45.0\\IEDriverServer.exe"); WebDriver driver = new InternetExplorerDriver(); driver.get("http://xxx"); Shows error while executing above code: Exception in thread "main" org.openqa.selenium.remote.SessionNotFoundException: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled) for all zones.

SSRS Report Viewer - Report chart fails to display in IE11

时光怂恿深爱的人放手 提交于 2019-12-01 05:35:23
问题 I have a report viewer control that show's a dashboard stye report. It has a few charts to give an overview, however when viewing in IE11 the report doesn't render at all and just shows up blank. The underlying stored procedure is being ran as well. I did some testing and Charts show up in Firefox (Current) Charts show up in Chrome (Current) Charts show up in IE Compatibility Mode. If I use the PDF export feature on my web viewer it's able to convert the original byte stream to the correct

IE 11 AngularJS error - Object doesn't support property or method 'from'

拜拜、爱过 提交于 2019-12-01 05:26:29
In my JavaScript I have a function detectEnvironmentAndGetLEAndDepot() which is called onload via HTML. I'm working with wicket, and need to take values held in the back-end, so I fire them to the screen, hide them, and search the <span> values from my JS for the name value, for example if(v.getAttribute('name') === 'LE'){do stuff} or if(v.getAttribute('name') === 'depot'){do stuff} (I'm sure not the most elegant solution, but I needed a quick one!). Then within the function detectEnvironmentAndGetLEAndDepot() I do a bit of formatting etc so the data is usable.

jQuery change event not working in IE11

ぃ、小莉子 提交于 2019-12-01 04:51:39
I am using jQuery change event on a input text box. It seems to work properly in Chrome and Firefox but not in IE11. Is there any other event similar to change which is supported in IE. jQuery 1.7. <body> <input id="search"></input> </body> $('#search').on('change',function(){ alert('hii'); }) jsfiddle :-- https://jsfiddle.net/7v0ohes8/ Pankaj Parkar I think you need to bind event on keyup that would work $('#search').on('keyup',function(){ alert('hii'); }) JsFiddle Here is another reference of Same Answer 来源: https://stackoverflow.com/questions/30005576/jquery-change-event-not-working-in-ie11

FileReader and JSON objects not defined in ie11

烈酒焚心 提交于 2019-12-01 04:49:10
问题 Whenever trying to open a page running a javascript code using FileReader and JSON upon page initialization, ie11 reports "FileReader is not defined", and later "JSON is not defined". The head of HTML file is as follows: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>LogViewer</title> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <link rel="stylesheet" href="css/slick.grid.css" type="text/css"/> <link rel="stylesheet" type="text