internet-explorer-11

Datepicker Support in IE11 and Firefox

不羁的心 提交于 2019-12-03 05:32:47
What is wrong with this simple HTML page that a date picker is not shown in FireFox 30.0 and IE 11? <!DOCTYPE html> <html> <head> <title>Untitled Page</title> </head> <body> <form> <label> Date field:</label><br /> <input type="date" value="" /> </form> </body> </html> Internet Explorer 11 does not currently support <input type='date'> , though we did recently announce that work was underway to do so. You can track that progress online at http://status.modern.ie . Firefox also does not appear to support the attribute presently. A bug was opened in 2012 requesting that support be added, but a

IE 11 Developer Tools Issue - Exception in window.onload

你离开我真会死。 提交于 2019-12-03 05:30:23
问题 I installed Internet Explorer 11 on my Windows 7 machine and it's not building the DOM in DOM Explorer. Does any one know about this issue? I tried to uninstall and re-install IE many times, but the problem still persists. The DOM Explorer tabs shows error shown in image - 回答1: This security update fixed it for me and others involved: http://www.microsoft.com/en-us/download/confirmation.aspx?id=44431 Make sure you install the correct version of the security update. There is a different

JQuery tablesorter pager plugin doesn't work properly with IE11 in Edge mode

限于喜欢 提交于 2019-12-03 04:51:44
If you are using the Tablesorter Jquery plugin with the pager add on the table will not display any of the data. The data is there but it is hidden. I suspect the browser feature detection method of the plugin can't handle IE11. Anyone else run into this? It seems that IE11 have a problem with his userAgent. A turnaround is to change clearTableBody function (working in jquery.tablesorter-2.0.3.js) like this : this.clearTableBody = function (table) { //if ($.browser.msie) { function empty() { while (this.firstChild) this.removeChild(this.firstChild); } empty.apply(table.tBodies[0]); //} else {

IE11 detect whether compatibility view is ON via javascript

懵懂的女人 提交于 2019-12-03 04:23:04
问题 does anyone know how to check if IE 11 compatibility mode is ON when I'm on a website through javascript? I added the url to the list compatibility view settings. But when I do navigator.userAgent in developer tools, it returns Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.3; rv:11.0) like Gecko Looking at the microsoft website (http://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx), it

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

感情迁移 提交于 2019-12-03 04:13:08
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 embedded in a page that is different from that which triggered the storage event, the event will not

ASP.NET on .NET 4 causing IE11 throw _doPostBack is undefined javascript error

↘锁芯ラ 提交于 2019-12-03 03:19:51
Edit: The site is on Windows Server 2003, hence cannot be upgraded to .NET framework 4.5. Our web site is serving ASP.NET ON .NET 4. When using IE 11 the auto postback stopped working with the error "_doPostBack is undefined". It's very likely can be fixed with some modification to the browser definition file, which I don't know how yet. Microsoft suggests feature detection (preferred), or changing the browser definition file. http://msdn.microsoft.com/en-us/library/IE/hh869299%28v=vs.85%29.aspx It looks like feature detection means dropping auto postback all together. Isn't that just like

how to detect IE11 using jquery [duplicate]

杀马特。学长 韩版系。学妹 提交于 2019-12-03 02:26:54
This question already has answers here : Jquery fail to detect IE 11 (4 answers) 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 ? swt 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. That last one was correct. Example: To apply a body style for IE only for IE7 and above (including 10+11...) Copy/Paste this code

Iframe cuts at the bottom when printing in IE

醉酒当歌 提交于 2019-12-03 01:45:31
On IE11 printing the page below, cuts the iframe at the bottom rather than letting it expand to the next page. How can I prevent that and make it print everything? Note: to reproduce this issue, just paste the code below into notepad and open it in IE <html > <head> <style> .myiframe{ width:100%; height:6000px; } </style> </head> <body> <div> <a href="javascript:print()" ><h1>Print</h1></a> </div> <iframe class="myiframe" id="myiframe" scrolling="no" src="https://en.wikipedia.org/wiki/Wiki"/> <div> The rest of the page </div> </body> </html> On chrome it works fine. the content of the iframe

How can I fully test my website on previous versions of IE with IE 11?

China☆狼群 提交于 2019-12-02 23:22:18
With IE 10 testing my website on older versions of IE was very easy and always worked as it should, I just went to the developer tools, picked the version I wanted from the menu and I had no problems. Now, after upgrading to IE 11 I encountered some problems with this method of testing. First, stuff I put inside HTML comments like <!--[if lt IE 10]> don't show anymore. Second, the same website that I tested a few days ago on older versions of IE with IE 10 looks very different when doing the same tests on IE 11. So, why do all this stuff happen and how can I solve it? Internet Explorer 11

Syntax error in IE11 with Webpack, Babel and React

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-02 22:41:19
I'm getting a Syntax Error in my React + Redux project in Internet Explorer 11, but I have no idea why it's caused. I'm using Webpack and Babel to compile it. I tried using babel-polyfill and babel-es6-polyfill, but that didn't help. This is the error I'm getting: SCRIPT1002: Syntax error File: app.js, Line: 70, Column: 1 Line 70 Column 1 is where the eval starts of Webpack: /***/ }), /* 21 */, /* 22 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nObject.define... <- Line 70 ^--- Column 1 This is my webpack.config.js : 'use strict'; // Include modules and