internet-explorer-9

Error in Internet Explorer 9 (not earlier versions or other browsers) when including jQuery in an iframe

我们两清 提交于 2019-12-30 08:09:10
问题 Basically I have a page that launched a fancybox iframe. In that iframe I also include jQuery. But when I testing it in Internet Explorer 9 it gives me the error Line: 68\n Error: 'Object' is undefined` This error is in file jquery-1.4.1.js and the line in question is the second line of this: // Save a reference to some core methods toString = Object.prototype.toString, hasOwnProperty = Object.prototype.hasOwnProperty, push = Array.prototype.push, slice = Array.prototype.slice, indexOf =

IE9 Not applying linked style sheets

陌路散爱 提交于 2019-12-30 07:20:48
问题 I have a wierd problem. I developed a site that works fine in most browsers. I just upgraded to IE9 and none of my styles are being applied. I'm viewing this on my local pc as this site is not on the internet just yet. All in-line or page level styles get applied correctly but the styles linked from external css files in the HEAD section aren't applied at all. If I use the developer toolbar and view the site as IE8, IE7, or any other mode the sites work fine. There's about 6 style sheets and

Conditional Style Sheets in IE9

你离开我真会死。 提交于 2019-12-30 06:08:09
问题 IE9 is supposed to support conditional comments. I have the correct MIME type: 'type="text/css"'. All of the other conditional style sheets are being read into the correct browsers. Here is what I cannot get to read in: <!--[if IE 9]><link rel="stylesheet" type="text/css" href="includes/ie9.css"><![endif]--> It is in the head with the rest of them, yet will not show up in the head in IE9. 回答1: Sorry for the dumb questions but, have you cleared the cache and tested (try setting some border

Conditional Style Sheets in IE9

旧街凉风 提交于 2019-12-30 06:07:48
问题 IE9 is supposed to support conditional comments. I have the correct MIME type: 'type="text/css"'. All of the other conditional style sheets are being read into the correct browsers. Here is what I cannot get to read in: <!--[if IE 9]><link rel="stylesheet" type="text/css" href="includes/ie9.css"><![endif]--> It is in the head with the rest of them, yet will not show up in the head in IE9. 回答1: Sorry for the dumb questions but, have you cleared the cache and tested (try setting some border

Conditional Style Sheets in IE9

a 夏天 提交于 2019-12-30 06:07:28
问题 IE9 is supposed to support conditional comments. I have the correct MIME type: 'type="text/css"'. All of the other conditional style sheets are being read into the correct browsers. Here is what I cannot get to read in: <!--[if IE 9]><link rel="stylesheet" type="text/css" href="includes/ie9.css"><![endif]--> It is in the head with the rest of them, yet will not show up in the head in IE9. 回答1: Sorry for the dumb questions but, have you cleared the cache and tested (try setting some border

Conditional Style Sheets in IE9

六月ゝ 毕业季﹏ 提交于 2019-12-30 06:07:04
问题 IE9 is supposed to support conditional comments. I have the correct MIME type: 'type="text/css"'. All of the other conditional style sheets are being read into the correct browsers. Here is what I cannot get to read in: <!--[if IE 9]><link rel="stylesheet" type="text/css" href="includes/ie9.css"><![endif]--> It is in the head with the rest of them, yet will not show up in the head in IE9. 回答1: Sorry for the dumb questions but, have you cleared the cache and tested (try setting some border

oninput in IE9 doesn't fire when we hit BACKSPACE / DEL / do CUT

随声附和 提交于 2019-12-30 05:47:39
问题 What's the cleanest solution we use to overcome the problem that IE9 doesn't fire the input event when we hit BACKSPACE / DEL / do CUT? By cleanest I mean code stinks not. 回答1: I developed an IE9 polyfill for the backspace/delete/cut. (function (d) { if (navigator.userAgent.indexOf('MSIE 9') === -1) return; d.addEventListener('selectionchange', function() { var el = d.activeElement; if (el.tagName === 'TEXTAREA' || (el.tagName === 'INPUT' && el.type === 'text')) { var ev = d.createEvent(

YouTube iframe API - onReady and onStateChanged events not firing in IE9

随声附和 提交于 2019-12-29 08:04:11
问题 I have been troubleshooting and searching for an answer to this for hours, to no avail. Sample code from the API documentation is being used verbatim. Sample code that others post and say works on IE9 doesn't for me. I've already confirmed the doctype is properly set in the html, I'm NOT hiding the iframe using display=none in the CSS, and the browser mode is IE9 and document mode is IE9 standards. My security settings are configured to medium high. Even google's sample page does not work for

Console is undefined error in IE9

南楼画角 提交于 2019-12-29 05:07:25
问题 I have a graphics page which shows SVG graphics. I am using Raphael graphics framework. The page displays properly in Firefox, Also if the F12 developer tools is set 'on' in IE9 it works fine. The map show partial data (its a node link diagram and it shows only one child node out of 12 nodes) in IE9 if the F12 developer mode is set off and application is started with browser cache cleared (simulating a general user). Update: I kept the Debugger on and Shows me the error "Console is undefined"

HTML5 Video Error - Internet Explorer 9

你。 提交于 2019-12-29 05:00:31
问题 I am trying to get a .m4v video to play in IE9 using html5 video tags. When I play the video from a remote location it works fine: <video src="http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer_480x270_h264aac.m4v" controls="controls"> </video> But when I want to play it from my server... <video src="Big_Buck_Bunny_Trailer_480x270_h264aac.m4v" controls="controls"> </video> ...it only works in Chrome and not in IE9. What could cause the video not to play when located on my server? Many