internet-explorer-11

JavaFx web not working with Internet Explorer 11 with JRE7

梦想的初衷 提交于 2019-12-04 04:02:04
问题 I note that I cannot be launched on web IE 11 .. I know that the useragent for IE11 is Trident not MSIE . so I suppose that the reason why I got always notification to install java even its already installed .. but I cannot find temporarily solution for that as guys solve this issue by updating deployJava.js for webstart and by adding "trident" with "msie"... just note that only windows 7 can install IE11 or its bundled with Windows 8.1 .. you cannot install IE11 or update it to IE11 on

Could not complete the operation due to error 800a025e

痞子三分冷 提交于 2019-12-04 03:18:27
What does this error mean in IE10/11: Error: Could not complete the operation due to error 800a025e. And how would I debug it? It says its this line: this.nativeSelection.removeAllRanges(); https://code.google.com/p/rangy/source/browse/trunk/src/js/core/wrappedselection.js#416 See it in action here: http://panmedia.github.io/raptor-editor/tests/cases/selection/selection-expand.html I had this error coming up recently, I fixed it with the following chceck: var sel = window.document.getSelection(); if (sel.rangeCount > 0 && sel.getRangeAt(0).getClientRects().length > 0) { sel.removeAllRanges();

jQuery POST does not submit form values using IE 11

北慕城南 提交于 2019-12-04 03:17:23
I have tried to find a solution for this problem for hours now, but the following code is simply not working for Internet Explorer 11. It does work for Chrome and Firefox. When using IE11 the post is submitted but the submitted form is empty. <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> </head> <body> <form action="/Mandate/Edit" id="mandateForm" method="post"> <input id="ExternalId" name="ExternalId" type="hidden" value="" /> <input id="mandateName" name=

Flexbox auto margins don't work with justify-content: center in IE

怎甘沉沦 提交于 2019-12-04 02:59:48
问题 I have a table where a cell can contain a number of icons, as well as text. If icons are present, they appear to the left of the text. There are a couple of possible alignment cases: Only an icon is present: The icon should be centered Only text is present: The text should be left aligned Both icons and text are present: Both the icon and text should be left aligned I thought that I could accomplish this and other more complicated alignments by wrapping everything within the table-cell with a

IE11 on Windows 7 does not cache files

醉酒当歌 提交于 2019-12-04 02:28:51
When examining cache behaviour on our web site I got a very confusing result - my Internet Explorer 11 browser did not cache any files at all. The cache settings in the Internet Option is set to "Check for newer versions of stored pages: Automatically". Investigating further with IE developer tool, all files were requested without an "if-modified-since" HTTP header, which of course caused the server to return the complete file with a 200 status result. Expected behaviour would be that IE should send an "if-modified-since" header, and the server then responding with a 304 (Not modified) status

jQuery change event not working in IE11

£可爱£侵袭症+ 提交于 2019-12-04 00:55:27
问题 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/ 回答1: 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

Emulating print media in Internet Explorer

这一生的挚爱 提交于 2019-12-04 00:49:24
I am implementing printing of a web page that is originally displayed in Internet Explorer. I would like to use the browser "Inspect Element" functionality when in print mode. So I would like to emulate print media, while still actually displaying the page in the browser. Google Chrome has exactly this functionality . Is this available in Internet Explorer. In particular, IE11? I do not believe that IE11 currently supports the F12 developer tools in print preview. I do not know whether such support is in the works, but you could consider adding a suggestion to IE platform suggestion box on

beforeunload on IE 11 - do not prompt user does not work

穿精又带淫゛_ 提交于 2019-12-04 00:38:58
When adding a listener to the global window object for the beforeunload event, IE 11 (and 10) does not behave as Chrome and Firefox. Normally, you return a string that will be used to populate the browser-native dialog prompt or you return an empty string if you do not want the dialog to prompt the user. However, in IE 11, if you return an empty string and/or set the evt.returnValue to an empty string, the browser-native 'Navigate Away' dialog is opened and prompts the user to acknowledge that they may lose unsaved changes. Is there any way (without having to remove the event listener) to have

Displaying binary file (pdf) in IE 11

微笑、不失礼 提交于 2019-12-04 00:18:53
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 fileURL = URL.createObjectURL(file); $scope.pdfContent = $sce.trustAsResourceUrl(fileURL); }) .error

Cannot find any elements using Internet Explorer 11 and Selenium (any version) and IEWebDriver (any version)

一世执手 提交于 2019-12-04 00:07:54
I've searched all over for an answer and I can't find any fix to my issue. I am trying to run my Selenium tests in IE11. All other browsers work fine (including Edge). A simple test as follows will cause the issue... System.setProperty("webdriver.ie.driver.loglevel","TRACE"); System.setProperty("webdriver.ie.driver.logfile", "C:/Projects/logme.txt"); driver = new InternetExplorerDriver(); driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS); driver.manage().deleteAllCookies(); driver.manage().window().maximize(); driver.get("http:www.google.com"); driver.findElement(By.id("lst-ib"))