internet-explorer-11

Getting error in IE11 for javascript array

北慕城南 提交于 2020-01-15 03:41:20
问题 I get this error below only in IE edge. It works in all other browser apart from this one. I want to figure out what is causing this error: Code rather than screenshot: var ui_tabsets = new Array(); Causing error: Object doesn't support this action. 回答1: The error is that the Array constructor cannot be found.. This means something has gone wrong elsewhere. Perhaps you've closed an iframe this was running on or something that's lost you your HttpContext, more often this issue manifests with

'Headers' is undefined in IE11

杀马特。学长 韩版系。学妹 提交于 2020-01-14 03:38:06
问题 I am using angular2csv where I export the data displayed in the table to csv. I add the headers using , export() { const head = ['Header1', 'Header2', 'Header3', 'Header4', 'Header5']; const exportErrors = new Angular2Csv(this.items, this.obj.value, { headers: (head) }); } It works fine in CHROME, but on IE11, it gives me an error saying 'ERROR ReferenceError: 'Headers' is undefined'. What is the issue here? What is the alternative to headers in IE11. 回答1: I just encountered this on a

input range not working in ie or edge

醉酒当歌 提交于 2020-01-13 18:34:08
问题 Has anyone else come across this issue and do you have a solution. Using this html in ie and edge the range doesn't show. <html> <head> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <link type="text/css" href="/static/css/bootstrap.min.css" rel="stylesheet"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <

How to prevent automatic scaling in Modern UI IE 11 on Windows 8.1/8?

随声附和 提交于 2020-01-13 17:34:08
问题 Windows 8.1/8 has a split screen feature which is nice while using multiple apps (like modern UI version IE11) in one screen. Most of the time when you set the IE split screen very narrow, you'll notice the web page zoomed out automatically, but some pages (like microsoft.com) are different. They doesn't zoom out and recognise the narrow width correctly, so it's easy to do some responsive deign. My question is: What code made that difference? I've tried <meta name='viewport' content='width

Label :hover attribute triggers incorrect element in IE10 and IE11

对着背影说爱祢 提交于 2020-01-13 10:12:48
问题 This is a little weird, but bear with me. This only affects IE10 and IE11, doesn't affect Chrome, FF, Safari, and IE9 and older. If you have a <label> for another element nested within a class that the :hover is assigned to, it will match that selector, even if you are not hovering over that element. In the example below, if you hover over the first div , both divs are highlighted. <div> <select id="min-price"> <option>A</option> </select> </div> <div> <label for="min-price"></label> <select>

jsPDF is not supported in remote server for IE-11

萝らか妹 提交于 2020-01-13 06:34:28
问题 I created a java script for creating a PDF file using jsPDF and its working on all the latest version of browser including IE11,chrome and firefox . below is the code <html> <head> <link rel="stylesheet" type="text/css" href="Wrs_Export_Report.css"> <script src="html2canvas.js"></script> <script src="jspdf.debug.js"></script> <script type="text/javascript"> function PDF() { var vTable = '<br>'; vTable += '<table class="wrs_export">'; vTable += '<tr class="wrs_export">'; vTable += '<th class =

Windows 8 - IE cannot reach sites listed in hosts file

≡放荡痞女 提交于 2020-01-12 07:29:08
问题 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

flexbox columns and IE

你离开我真会死。 提交于 2020-01-12 06:23:51
问题 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 {

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

六眼飞鱼酱① 提交于 2020-01-12 05:47:30
问题 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

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

▼魔方 西西 提交于 2020-01-12 03:32:07
问题 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