internet-explorer-9

Style sheet for XML not rendering in IE9

青春壹個敷衍的年華 提交于 2019-12-22 18:18:52
问题 I have a xml document which right now is not even recognized as xml on IE9. I have tried adding correct xmlns:xsl attribute, also it has a correct header starting with <?xml version="1.0" encoding="UTF-8"?> This xml renders perfectly in IE 6 7 8 but does not work in IE9. I am not sure if it is Quirks mode related issue, and if it is I am not sure what DOCTYPE is should use for XML documents. Any help will be greatly appreciated. Following is the first few lines of XML document. <?xml version=

Iconic fonts displayed partially in IE9-10

雨燕双飞 提交于 2019-12-22 12:50:57
问题 We're having an issue with IE rendering only part of the characters in a font. This only happens in production and the same font file works great locally. It would be great if someone could give me a hand on this! Thanks! P.S. The font is generated by IcoMoon You can see it yourself on the preview page here. UPDATE: Disabling Amazon Cloundfront CDN helped me avoid this issue. Although it would be really nice if we could eliminate it once and for all. 来源: https://stackoverflow.com/questions

Why does IE9 require a meta tag to render rounded corners?

六眼飞鱼酱① 提交于 2019-12-22 10:29:54
问题 In IE9, which was just released, you need to provide the meta tag <meta http-equiv="X-UA-Compatible" content="IE=9" /> to allow the css border-radius to render. Why? 回答1: This link: http://blogs.msdn.com/b/ie/archive/2010/06/16/ie-s-compatibility-features-for-site-developers.aspx indicates that the meta tag is not the only way to enable border-radius. Instead, you can change your doctype. Read the whole article to determine whether you want to use the doctype or the meta tag, though. 来源:

IE 9 Standards Mode: normalize() method does not work

北城余情 提交于 2019-12-22 10:14:41
问题 I was testing something and I came across a weird bug (I don't know if it's really a bug, although). Take this simple document <!DOCTYPE html> <html><head><meta charset="utf-8"> <script> window.onload = function() { var p = document.createElement('p'); p.appendChild( document.createTextNode('x') ); p.appendChild( document.createTextNode('y') ); p.appendChild( document.createTextNode('z') ); document.body.appendChild(p); console.log( p.childNodes.length ); p.normalize(); console.log( p

IE9 onbeforeunload called twice when window.location changed in button event… minimal reproduction

人走茶凉 提交于 2019-12-22 08:08:26
问题 I've been hammering and hammering at this and just can't get anywhere. I have a cancel button that does a "window.location = '404.htm';" when clicked. The onbeforeunload handler fires twice, but only if the user clicks "Stay on this page" to the first dialog. A normal navigation (page refresh, going to home page) the onbeforeunload handler only fires once. I've managed to repro the behavior with a minimal amount of HTML and script: <!DOCTYPE html> <html> <head> <title>Test page</title> </head

What is required to use Angular 2 within IE9?

社会主义新天地 提交于 2019-12-22 05:10:14
问题 I've been trying to create an Angular 2 application (using the get started guide) as a template but while it works really well in Chrome I'm struggling to get it working in IE9! Basically the app is failing while loading/running boot/js with the following error reported to the developer console.. LOG: Error: Object doesn't support this action Does anyone have any recommendations or suggestions - even better - a demo that actually works in IE9? The start of my index.html looks like the

IE 9 ignoring CSS rules

痞子三分冷 提交于 2019-12-22 05:02:44
问题 I have this weird issue with IE9 where it is ignoring certain CSS rules on its own. Even IE8 loads it correctly. So does IE 10 and all the nicer browsers like FF and Chrome. The css is being loaded with "text/css" MIME. For example, These rules are not being applied by IE9. I cannot find these rules in the developer toolbar CSS tab. .B2B .info_cart { display: block; clear: both !important; } .B2B .info_cart .priceDetail { font: 14px/22px Arial,Helvetica,sans-serif; padding-left: 3px; } .B2B

Angular JS “SCRIPT5007: Object expected” error in IE9 and IE10 upon loading the angular library

一世执手 提交于 2019-12-22 04:06:06
问题 I am developing an AngularJS application that should run on Firefox and IE 9 and IE 10. I use the latest version of angularjs library (now it is 1.3.15). The serverside is written in Java in JavaEE platform and server runs on GlassFish, and our computers run windows 7. Everything works fine when I am running the server locally on my computer and access my application using the http://localhost:8080 url. But in IE9 and IE10, when I try to load the application from my server by using my ip

Why does my form not upload files in Internet Explorer 9?

拥有回忆 提交于 2019-12-22 01:34:00
问题 Welcome to episode 32,342,343 of "Why does Internet Explorer Suck So Much?" ... I've seen lots of reports that IE9 does a crappy job uploading files. Apparently it has lots of caveats about when it will or won't work (If someone has a definitive list I'd love to see it). However, most of the problems/solutions I see have found are related to javascript, usually the jQuery form plugin or something similar. My form is not submitted via AJAX and the the file input field is not hidden or obscured

Reload the content of a div afer regular interval of time

巧了我就是萌 提交于 2019-12-21 23:45:45
问题 I want to reload the content of a div (Recent_updates) after regular interval of time. I've used the following javascript code var refreshId = setInterval(function() { $('#Recent_updates').fadeOut("slow").load('Recent_updates.php').fadeIn("slow"); }, 60000); Recent_updates.php <?php include("include/connect.php"); include("library/paginator.php"); ?> <div style="text-align:right;"> <? $query = "select * from settings"; $tab = mysql_query($query); $row = mysql_fetch_array($tab); $item_no =