internet-explorer-9

Poor quality downsized image in IE9

一世执手 提交于 2019-12-04 00:52:15
问题 I noticed that IE9 renders downsized images in a very low quality: if I display a 800x600 jpg image in a 200x150 IMG tag, the result in IE9 is very disappointing. The same page displays perfectly fine in IE8 and in Chrome. IE7 is also OK, provided I use CSS style -ms-interpolation-mode: bicubic; ). Firefox shows the same dismal result as IE9 but this seems to be a known bug, see https://bugzilla.mozilla.org/show_bug.cgi?id=486918 I have trawled Stack Overflow and other forums but haven't

IE9 Window Loses Focus due to jQuery Mobile

本小妞迷上赌 提交于 2019-12-04 00:38:39
In our product, we're using the most recent development version of jQuery Mobile in our ASP.NET website. Each and every time we do an ASP.NET postback, the browser window goes to the back of the screen. Example: Maximize any window. Example: Visual Studio, Word, Windows Explorer. Maximize IE9 over it. IE9 is the only thing you see on the screen. Click on a button in our solution that does a postback. IE9 is no longer visible. Whatever was behind it now has focus (and fills the screen, as it is maximized) Only workarounds I know: Don't include the jQuery mobile scripts. Ensure IE9 is the only

Shadow artifacts during animation in IE9

筅森魡賤 提交于 2019-12-04 00:15:52
Here are css, html and js to reproduce: html: <div id="outer"> <div>123</div> <div id="inner">345</div> </div> css: #outer { -moz-border-radius: 5px; border-radius: 5px; box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3); } #inner { height: 200px; } js: $(function() { $('#outer').click(function() { $('#inner').slideUp(); }); }); and http://jsfiddle.net/DwApF/ as well Any workarounds for this issue? Attempt #1 http://jsfiddle.net/DwApF/3/ This hides the shadow and then restores it after the slide is complete. It's a hack of a solution but this is a manner in which a variety of behaviors can be

Margin: Auto not working in IE

别来无恙 提交于 2019-12-03 23:40:09
URL: http://cyberbat.co.uk/test container margin: auto is not working, is there any other way to put it in the middle in IE. EDIT: Check it again, the index.php was the wrong file, I replaced it with index.html . javad amiry This is a bug in IE! You just need to create a holder for <div class="page"> and set its text-align to center .page-holder{ text-align:center; } .page{ margin:0 auto; } <div class="page-holder"> <div class="page"> page content </div> </div> Coşkun GEMİCİ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> Your problem is define your

Word-wrap not working in Internet Explorer

和自甴很熟 提交于 2019-12-03 23:22:24
When I'm using word-wrap:break-word with Browser Mode: IE9 Compatibility View and Document Mode: IE7 standards its working perfectly fine. However when I change the Document Mode: IE9 standards , its not working. I've also tried using -ms-word-wrap:break-word however its giving me the same result. Document Type Definition: DTD/xhtml1-transitional.dtd Can anyone tell me why is it so and if there is any workaround to cope up with it ? you need to have table { width:100%; table-layout:fixed; } and put word-wrap in table,td,th not into span http://jsfiddle.net/d6VsD/7/ applying word-wrap property

A JavaScript script only works on Internet Explorer when the Internet Explorer Developer Toolbar is visible

走远了吗. 提交于 2019-12-03 22:30:57
I got a script working on Firefox 5 but not with Internet Explorer 9. When I just open the Internet Explorer Developer Toolbar addon and try the same actions as before - it works. There is other JavaScript code on the page which is working, so it is just a part that isn't. Is there something like the developer toolbar changing any options of Internet Explorer while running? Without your having quoted any code, one has to guess. My guess is that you're using console.log (or one of the other console methods) in your code. On IE8 and IE9, the console object doesn't exist until/unless the

IE9 does not at all care about 'X-UA-Compatible' meta tag

为君一笑 提交于 2019-12-03 21:55:38
I can't find anything about this on the internet, so I'm looking for help here: For some technical reasons I try to force IE9 into IE8 rendering mode, using the following meta tag as the first line right after <head> : <meta content="IE=8" http-equiv="X-UA-Compatible"> For some reason all the IE9s in our office just render IE9 style, no matter what I try. When I look into the DevTool (F12) from IE9, it shows me that IE8 is the "page default", but it still sticks to the rendering mode set in the DevTools. There is no way to influence that. We even did a delete and re-install of IE9, because we

Why does this jQuery Ajax call fail ONLY in IE9 (Even works fine in IE8 and IE7)

余生颓废 提交于 2019-12-03 19:56:25
问题 I have a website where I make an ajax call like this: // perform an ajax request to generate a new subscriber account jQuery.ajax({ type: 'POST', url: '/index.php?option=com_content&view=article&id=45&tmpl=component', data: postVars, success: handleResponse, error: function(jqXHR, textStatus, errorThrown) { alert ('response: ' + jqXHR.responseText); alert ('code: ' + jqXHR.getResponseHeader('X-Subscriber-Status')); } }); The page being requested doesn't do anything but return a single digit

IE9 problems with jQuery load() event not firing

别说谁变了你拦得住时间么 提交于 2019-12-03 18:01:49
问题 I am trying to preload a couple of images and would like my page to go on hold until all of the images are loaded. So what I am doing is this: var numPics = $('#bg img').length; var picsLoaded = 0; $('#bg img').load(function(){ picsLoaded++; if (picsLoaded == numPics){ buildPage(); } }); This works fine in all browsers except (you guessed it) IE. Somehow the Internet Explorer will download all pictures (I can see them being loaded in the dev-tools), but will only randomly fire the load -Event

Table with 100% height row and Internet Explorer 9

老子叫甜甜 提交于 2019-12-03 17:24:49
问题 I have the following example: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Example</title> </head> <BODY> <DIV style="height:150px;background-color:#AAAAFF;overflow:auto"> <TABLE style="height:100%;width:300px"> <TR> <TD style="background-color:orange">Text with an unknown height (22px here