internet-explorer-10

Can't load Google Cloud Endpoints on Internet Explorer 10

自闭症网瘾萝莉.ら 提交于 2019-12-04 17:09:57
问题 I'm working on a web site that is using the Google JavaScript Client Library to load some APIs that are exposed via Google Cloud Endpoints. The endpoints were developed in Python, but I'm not sure if that's a factor. Everything's working great in Chrome, Firefox and Safari, but on Internet Explorer 10 I get this error: SCRIPT5007: Unable to get property 'value' of undefined or null reference proxy.html, line 7 character 51 I'm loading the client library using code similar to that suggested by

IE background flicker

回眸只為那壹抹淺笑 提交于 2019-12-04 16:20:58
I have the problem that when I switch to other pages on the site, my background turns white and loads again. I know it has something to do with the IE cache and did some research about it. I already tried the most common fixes, both css and javascript, like the ones on this site: http://ieflicker.com/ but none of them works. UPDATE (some code) The site uses BODY with background-image: url('background1.jpg') as a part of its CSS. This seems to load image once and cache it in all the browsers but IE10. IE10 seems to reload it every time. Apparently IE10 doesn't cache image loaded via CSS despite

How does IE determine whether a site is an internet or an intranet site?

爷,独闯天下 提交于 2019-12-04 14:15:18
Within IE, people are provided with security setting dialog to decide whether a website is rendered as an internet or an intranet site. My question is how do you tell the current page you loaded is a internet or intranet in IE 9 or 10? Since I could not find the status bar like those ones in IE 7 or 8 Neil Neyman You can look in File -> Properties. Press Alt to display the menu bar if it's not there. There you can see "Local intranet" or "Internet". 来源: https://stackoverflow.com/questions/18092648/how-does-ie-determine-whether-a-site-is-an-internet-or-an-intranet-site

IE9, tables, and display: block

故事扮演 提交于 2019-12-04 14:01:16
问题 For the low-width mobile version of my site, I switch the display of certain table , tr , td , and th to block , to let them stack vertically. I use this as a technique to allow wide tables to continue to display all of their content without overflowing outside of their container. It works perfectly in all of the modern 5 browsers, but does not work in IE9. Is there a way to do this there? Here is a jfiddle: http://jsfiddle.net/cfCzD/4/ Here are screenshots IE11 (Goal): IE9 (Bad result): 回答1:

Alternative to readAsBinaryString for IE10

十年热恋 提交于 2019-12-04 10:47:43
问题 It seems that readAsBinaryString, a method of the JavaScript FileReader object, is not supported in IE10. I've tried the following, as suggested in this HTML5 Rocks article: String.fromCharCode.apply(null, new Uint16Array(buffer)); However, this results in an Out of stack space error. 回答1: I found the answer here: var binary = ""; var bytes = new Uint8Array(buffer); var length = bytes.byteLength; for (var i = 0; i < length; i++) { binary += String.fromCharCode(bytes[i]); } 回答2: If you'd like

PHP HTML5 compatible MP4 video using FFMPEG

我怕爱的太早我们不能终老 提交于 2019-12-04 10:44:28
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, '.')); //$command = "ffmpeg -i assets/uploaded_videos/$entry -vcodec libx264 assetss/videos/$filename.mp4";

CSS filter grayscale image for IE 10

落爺英雄遲暮 提交于 2019-12-04 08:56:27
问题 Is there a way to make grayscale image filter work on IE 10 without JavaScript or SVG? I've been using the following code successfully in all browsers except IE 10. img{ filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */ filter:gray; /* IE6-9 */

SVG inline CSS not displaying in internet explorer

岁酱吖の 提交于 2019-12-04 07:08:09
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 are placed by adding css classes to targeted cells from JSON data. Here is a small snip of the a CSS

How can I make background-size:cover work in IE10 without making attachment fixed?

丶灬走出姿态 提交于 2019-12-04 06:03:03
问题 My code: html { background-image:url('img.png'); background-repeat:no-repeat; background-position:center top; background-size:cover; } This works perfectly on Firefox and Chrome, but on IE the image doesn't get stretched at all. It will work if I set background-attachment to "fixed" but that isn't what I want. Every website I've looked at claims that these proprties are perfectly implement in IE, but they clearly aren't. 回答1: Troubleshoot CSS Background Size Cover It's a bit hard to

Why doesn't IE10 display nested CSS3 3D transformed elements?

蓝咒 提交于 2019-12-04 05:55:34
i'm a bit lost here, i'm currently testing the IE10 (10.0.9200.16384) that came with the Windows 8 Release Preview, and i'm having a very hard time. One of the things that are bugging me, is that IE doesn't seem to handle nested 3D Transforms corrently. Please see this fiddle: http://jsfiddle.net/uUHdF/1/ There are two colored divs, a red one, and a green one rotated and translated so that it acts as the top of a cuboid, and this cuboid itself is rotated and translated too (note that i can't use transform-origin with rotate only because it is/was buggy in Webkit... just in case that might be