internet-explorer-10

Nested flexbox adds empty space on IE10 and 11

风格不统一 提交于 2019-12-10 09:17:16
问题 I'm using flexbox for a layout. My constraint is that the image must be situated at the middle. I've made a minimal markup that reproduces the issue: http://codepen.io/anon/pen/xwNomN It works perfectly well in all browsers EXCEPT on IE 10 and 11, where (as shown in the CodePen) a big amount of empty space is added at the top and bottom of the image. .collection__list { display: flex; flex-wrap: wrap; } .product-item { display: flex; flex-direction: column; justify-content: space-between; }

IE10 JavaScript cannot repaint window while computer is locked?

大兔子大兔子 提交于 2019-12-10 03:10:47
问题 The Problem Occurs on IE10. (IE8 works fine.) I've written some JavaScript code that, after 20 minutes of inactivity, redirects the browser to another URL to indicate the user was logged out. Normally this works fine. However I've noticed a strange scenario.... if the user's Windows computer was locked during this timeout then it appears as though nothing has happened. However, when I look at the browser's URL bar, I can clearly see that the URL has already been updated to the auto-logout

Can I turn on IE 10 Compatibility View using JavaScript or HTML?

女生的网名这么多〃 提交于 2019-12-10 02:44:53
问题 How can I turn on IE 10 Compatibility View programmatically in Javascript or HTML? I just added the following meta tag within the <head> tag, but it is not working. <meta http-equiv="x-ua-compatible" content="IE=EmulateIE7" > Is there any way to do the same thing in JS? 回答1: I checked the compatibility mode article on msdn - here. Your meta tag is still the method for enabling compatibility mode in IE 10 and IE 9. As long as you have: <head> <meta http-equiv="X-UA-Compatible" content="IE

array.map function not supported in IE8 standards?

别等时光非礼了梦想. 提交于 2019-12-10 02:06:21
问题 I don't have IE8 so I am testing IE8 from within IE10. When I switch to "IE8 standards" for document mode, the javascript map function of an array object gives a javascript error: Object doesn't support property or method 'map' but when I switch to "Standards" for document mode, there's no error. Which mode should I test under? If IE8 doesn't support the map function, is there a way to emulate it? 回答1: It's not supported, but MDN provides a shim very close to the specification: // Production

How can I debug Silverlight 5 applications in Visual Studio 2012 after installing Internet Explorer 10?

两盒软妹~` 提交于 2019-12-10 01:21:41
问题 I can no longer debug my Silverlight application in Visual Studio after updating to Internet Explorer 10. I made no other changes to my system and it was working fine with Internet Explorer 9 just before the update to IE10. When I hit F5 in Visual Studio, IE10 is fired up and the Silverlight application runs in the browser, but breakpoints are not hit in Silverlight code. If I hit shift+F5 (stop debugging), the browser remains open (this used to shut it down). Alternatively, if I close the

PHP HTML5 compatible MP4 video using FFMPEG

徘徊边缘 提交于 2019-12-09 18:31:46
问题 Hi I am using FFMPEG to convert the uploaded video with PHP. echo "conversion exercise started...<br/><br/>"; /* looping through all files in the directory */ if ($handle = opendir('assets/uploaded_videos')) { while (false !== ($entry = readdir($handle))) { /* filtering the desired extensions */ if ($entry != "." && $entry != ".." && in_array(substr($entry, strrpos($entry, '.')), array(".wmv", ".mpg", ".mpeg", ".flv", ".ogg", ".mp4"))) { $filename = substr($entry, 0, strrpos($entry, '.')); //

SVG inline CSS not displaying in internet explorer

懵懂的女人 提交于 2019-12-09 18:20:37
问题 First question on stackoverflow, hope it's not too boneheaded. I've been trying to figure out a way to display a calendar with split event days. What I came up with was using an SVG graphic placed with inline css as a background for the specific calendar table cell in order to split days that have a split. It works wonderfully in Firefox and Chrome but the graphics do not display in Internet explorer (I've tried 9 and 10 but not 11). The calendar is first generated with javascript and events

Using javascript to set cookie in IE

坚强是说给别人听的谎言 提交于 2019-12-09 11:49:33
问题 document.cookie= "cookiename=cookievalue; expires=Mon,12Jun2015:00:00:00; path=/;" I run this script on my Internet Explorer 10 but it doesn't share cookie between 2 IE tab. But when i remove the "expires" properties so it seem to working : document.cookie= "cookiename=cookievalue ;path=/;" But i don't want to remove the "expires" properties. So how to resolve this problem ? 回答1: I have used this code since mid '90s - it has worked in all browsers on all platforms so far Include the file and

Windows 8 prepare site for pinning

落花浮王杯 提交于 2019-12-09 04:06:38
问题 I would like to prepare my site for windows 8 pinning and have been reading some documentation on how to add the various images and could figure out that it could be done by using metadata and according to instructions and help on this site I could actually build the following meta tags but i couldn't figure out where I can call the browserdetect.xml file assuming I have the file located at mysitee.com/upload/win8/browserdetetct.xml and the images in the same folder <meta name="application

IE10 is not Handling Click Events | Help Using MSPointer

笑着哭i 提交于 2019-12-08 22:04:25
问题 Please forgive me in advance for being a stoopid noob. Anyway, I'm trying to make my html5 game play on IE10, but it's not detecting my clicks. So I research this a bit and find out that instead of understanding what this means: document.getElementById("answer1").addEventListener("click", wrong, false); If have to use some crappy proprietary code. Because I am a stoopid noob, I am having problems implementing this. Here is what I have currently document.getElementById("answer1")