internet-explorer-11

JPEG Images not loading in IE11 browser through apache web server

微笑、不失礼 提交于 2019-12-13 03:59:16
问题 I'm using apacher web server to stre the static content (like images, css etc.) with my website. Below is my apache configurations set as below : <IfModule mod_expires.c> ExpiresActive on <FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf|html)$"> ExpiresActive On ExpiresDefault "access plus 30 minutes" </FilesMatch> </IfModule> <IfModule mod_headers.c> <FilesMatch ".+\.(ico|jpg|jpeg|png|gif|js|css|swf|html|woff)$"> Header set X-XSS-Protection "1; mode=block" Header set X-Content-Type-Options

Angular 5 + How to move the cursor character by character using keyboard left/right options in IE 11

浪尽此生 提交于 2019-12-13 03:45:58
问题 I am using Angular 5 with Ag-Grid Enterprise Addition. I am using IE11 browser. Unfortunately in the grid, the cursor gets stuck and not moving to next characters in the input box using keyboard left/right options. So, I thought of explicitly moving the cursor to next characters. I am using Javascript range for that. I am getting the error at this line document.getSelection().addRange(range). Please find the below code of the custom NumericComponent ,screenshot of input box and error. I am

IE11 full screen on element

坚强是说给别人听的谎言 提交于 2019-12-13 03:11:18
问题 IE 11 has been out just one day as of this posting. I cannot get an element to go full screen (div or document) http://msdn.microsoft.com/en-us/library/ie/dn265028 msRequestFullscreen will error 'object does not support this...) However, the above msdn example will work on passing a target - makeFullScreen(evt.target). Can I get an div to go fullscreen as in following jquery code?: var xxx = $('#container'); xxx.msRequestFullscreen(); Or better still: click a button then have a div or the

IE11 Automation via Excel VBA - Forms

半世苍凉 提交于 2019-12-13 03:01:35
问题 This is part 2 from my original post here. So now once logged in, I have to make two clicks to display the information I'm ultimately trying to scrape. I cannot seem to figure out the proper way to drill down to get to the clicks to work. It is all buried within a form. The 1st image shows the form structure. The 2nd image shows all of the code where I'm trying to get to the Current Situation link below the Supervisor span. I had to use the following (as you see from my previous post) to get

ASP.NET Website Compatability issue on IE11

浪子不回头ぞ 提交于 2019-12-13 02:58:38
问题 I have a Website developed in ASP.NET which works fine in Chrome, Firefox browsers but not IE. It requires the Compatability to be set specifically in the browser. If we remove the compatability, the website is rendered useless. Is there some solution to this other than putting in Meta Tags like : <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> 回答1: Most likely you have mobile.browser file in /App_Browsers . The problem is that the mobile.browser file does not have an entry for IE 11

PHPUnit_Framework_Exception when trying to run Codeception / Selenium with Internet Explorer 11 / IE11

落花浮王杯 提交于 2019-12-13 02:56:44
问题 When I try to run my Codeception tests with Internet Explorer 11, I get the following error: [PHPUnit_Framework_Exception] Undefined index: ELEMENT 回答1: This problem was resolved by re-starting Selenium with a passthru flag. java -jar selenium-server-standalone-3.5.3.jar -enablePassThrough false 来源: https://stackoverflow.com/questions/48799845/phpunit-framework-exception-when-trying-to-run-codeception-selenium-with-inter

Download Blob from webworker in IE11

白昼怎懂夜的黑 提交于 2019-12-13 02:34:45
问题 I m trying to download a large blob from a web worker. With Firefox and Chrome it's quite simple: url = URL.createObjectURL(oMyBlob); //Then i return the url to the main thread and go to it But according to this thread IE doesn't allow that, and we must use this: navigator.msSaveBlob(blob, defaultName); But navigator seems to not have access to msSaveBlob within a webworker... What's the best way then to download a Blob (~100MB) within an IE11 worker? 来源: https://stackoverflow.com/questions

Unusual case with IE and flip animation

夙愿已清 提交于 2019-12-13 02:09:42
问题 I have an unusual case where my flip animation does not work in IE (go figure) - however, it does work across all other browsers (Chrome, FF, Opera, Edge, and Safari)... I'm not entirely sure what the root of the cause is here - I've searched a ton but nothing helped...A lot of people said to use the backface-visibility: hidden; with the -ms- prefix but that too did not work. I even tried using a <meta> tag on my html file such as: <meta http-equiv="X-UA-Compatible" content="IE=9; IE=10; IE

Excel VBA to populate I.E. causes Run-time error in I.E. 11 but not 9

旧巷老猫 提交于 2019-12-13 02:06:06
问题 I created a sub to populate form fields in a website with data from an Excel workbook The sub opens a new window in Internet Explorer, navigates to a intranet site, and populates form fields with data from an Excel workbook This sub works using Win7 Excel 2010 and I.E. 9 When I use newer versions of I.E., the sub opens a new window in Internet Explorer and navigates to a intranet site, but fails to populate the form fields I receive the following error from VBA: Run-time error ‘-2147417848

Syntax Error only in IE

China☆狼群 提交于 2019-12-12 23:13:59
问题 I get a syntax error only in IE11 on this line and i can't seem to pinpoint what the issue is. Its on line two quizOptions.map((item, i) => { the error is: SCRIPT1002: Syntax Error (this was the edit) I haven't seen any issues with this piece of code on any other browser. var quizOptions = cur_quizInfo.options; quizOptions.map((item, i) => { var li = jQuery("<li>", { class: 'quiz_answers', text: item }).appendTo(buttonList); }); 回答1: ES6 arrow functions are not supported by Internet Explorer.