internet-explorer-11

Cannot get BHO working in 64 bit

♀尐吖头ヾ 提交于 2019-12-03 15:04:21
问题 I'm working on IE11 Browser Helper Object. I got it working when I build it in x86. The problem is, I want to use the project on x64 the BHO extension isn't working when it's built on x64. The extension shows up in the Internet Explorer add-ons screen, but the javascript popup is not showing up. The DLL is registered using the x64 version of regasm via the Visual Studio command prompt as administrator, with/without the /codebase and /tlb but without result. The registry key is added

How to work around IE11 localStorage events firing twice or not at all in iframes?

耗尽温柔 提交于 2019-12-03 14:24:59
问题 I'm guessing it's a bug, but I haven't been able to find any discussion about this. It's known that IE10 will (against spec) fire storage events locally (ie, within the same global execution context from which the event was triggered), but IE11 seems to stray even further from the spec (http://www.w3.org/TR/webstorage/) when it comes to same-domain iframes: if the iframe is embedded in the page that triggered the storage event, the event will fire TWICE within that iframe. if the iframe is

Windows 8 - IE cannot reach sites listed in hosts file

回眸只為那壹抹淺笑 提交于 2019-12-03 13:14:42
I have many local websites set up in IIS and have entries in my hosts file to make the websites available locally. I've come from a Windows 7 machine where everything was working correctly in all browsers. The move to Windows 8, using the same hosts file and the same websites in IIS seems to be causing issues with Internet Explorer (11). I can access the website: mywebsite.local in Firefox and Chrome but am unable to access the same website in Internet Explorer. I've made sure that I'm not connected via any proxies or VPN connections and that my hosts file entry is typed correctly yet Internet

IE 11: Error while sending Multipart Form Data request: Stream ended unexpectedly

廉价感情. 提交于 2019-12-03 13:12:19
I am trying to upload files along with some other form fields using jQuery AJAX calls. This is a common function that calls the URL on the server: function uploadDocument(rquestURL,formId,callback){ $.ajax({ type : 'POST', url : rquestURL, cache:false, processData:false, contentType:false, data : new FormData($("#"+formId)[0]) }).done(function(response) { callback(response); }); } On examining from the dev tools from browsers, these are the respective request contents: From IE11 -----------------------------7dfad39402e6 Content-Disposition: form-data; name="subject" Test ----------------------

how to detect IE11 using jquery [duplicate]

自古美人都是妖i 提交于 2019-12-03 12:53:47
问题 This question already has answers here : Jquery fail to detect IE 11 (4 answers) Closed 5 years ago . I have codes $.browser to detect the browser and upon the result some layout style is based. but now with ie 11, $.browser would give mozilla v.11. any suggestion to repair ? 回答1: Try this: var isIE11 = !!navigator.userAgent.match(/Trident.*rv\:11\./); alert(isIE11); EDIT: Editted in a regex fix, taken from the comments. This fix works in the current version of IE11 as of 2/17/2014. 回答2: That

Running ie10, ie11 at same time for testing?

喜欢而已 提交于 2019-12-03 12:33:13
I recently installed ie11 on my Windows7 machine and do browser testing for all versions of ie on it in the document. I also do tests on Browserstack. I have client now that INSISTS I test on ie10 directly. As you know, Windows won't let you run multiple version if ie, un-install ie directly, or reinstall an older version when a newer version is already installed. I don't want to have to uninstall/reinstall ie11, reinstall/install ie10. Is there a work around where I can run both version without have to uninstall one or the other? On modern.ie you can find free virtual machines for every

Printing Iframe in IE 11 only prints first page

对着背影说爱祢 提交于 2019-12-03 10:30:34
I have the following code to print the content of a popup window: var frame = this._urlElement; if (frame) { var content = frame.contentWindow.document.getElementById("content"); if (content) { MarvalSoftware.UI.Dom.setStyles(content, { 'overflow': 'visible' }); } frame.contentWindow.focus(); frame.contentWindow.print(); } where _urlElement is an iframe, and its content doc has overflow: auto . When I print to PDF in IE11, I only see the first page, and the content is not cleanly cut off, nor are any scrollbars visible on the printed PDF. If I try Print Preview, even inside the iframe, I see

flexbox columns and IE

时光总嘲笑我的痴心妄想 提交于 2019-12-03 09:34:31
Everything works fine in Chrome and Firefox but guess what, I have a problem in IE! (IE11) In my responsive layout I want to menu to be horizontal in pc mode and vertical in tablet/mobile mode. It does just that, but in IE the menu items have no height. They all collapse to 0 height if inspected with the developer tool. I can't find why. Anyone would have an idea? I made a codepen for it: http://codepen.io/Reblutus/pen/qjacv Here is the code <style> header { background: cyan;} nav { background: bisque;} .main-a { background: tomato;} .main-b { background: lightblue;} footer { background:

HTML5 video: ffmpeg-encoded MP4 not playing in any browser (plays in VLC though)

删除回忆录丶 提交于 2019-12-03 08:32:17
I am trying to serve HTML5 video in MP4 and WEBM fomats. I cannot get all browsers to work though: Browsers which support WEBM (Chrome desktop, Firefox desktop) play the videos fine. Browsers which use MP4 are not working (IE, Safari, Android). WEBM is being served as video/webm . MP4 is being served as video/mp4 . Minimal JSFiddle at: http://jsfiddle.net/#&togetherjs=5Ql5MmrV4j Browser errors: IE11: 11.0.9600.17126 / 11.0.9 KB2957689 Error: Unsupported video type of invalid file path Android browser and Chrome Android: No error, video just refuses to start Sanity test - the following three

Angular 2 performance IE11 *ngFor

混江龙づ霸主 提交于 2019-12-03 06:16:15
I'm trying Angular 2 and I noticed that performance on Internet Explorer 11 is dramatically slow while cycling with *ngFor over 1500 items. It takes about 25sec with IE11 whereas less then 1sec on other browsers. Pausing the debugger I noticed that the code constantly calls isNan function in es6-shim.js. Here the call stack: A working plnkr here: http://plnkr.co/edit/sEujClHmuCbrydIiYQYL?p=preview . The code is very simple: <ul *ngFor="#item of items"> <li>Item: {{item.itemKey}}</li> </ul> //Load items simulating remote load setTimeout(function(){ for (let i = 0; i < 1500; i++) { self.items