internet-explorer-7

IE7 cause of “Text - Empty Text Node”

回眸只為那壹抹淺笑 提交于 2019-12-03 23:31:06
I'm using the IE web developer toolbar to troubleshoot an issue. A blank white space is appearing below a list item, and I can't logically figure out why. Using the web dev toolbar, I see that in example 1 below, a "Text - Empty Text Node" is being output below "Text - Google". Ironically, in the second, with a space manually inserted after the word "Google", that text node no longer appears. It would make complete sense to me if the results were reversed. Any ideas what may cause this odd behavior? Note: this is occuring in IE7, but not IE8. <li><a href="www.google.com">Google</a></li> -

YUI Autocomplete renders under other page elements in IE7

断了今生、忘了曾经 提交于 2019-12-03 22:45:14
I'm working now on a page that has a column of boxes styled with sexy shadows and corners and whatnot using the example here . I have to admit, I don't fully understand how that CSS works, but it looks great. Inside the topmost box is a text-type input used for searching. That search box is wired up to a YUI autocomplete widget. Everything works fine in Firefox3 on Mac, FF2 on Windows, Safari on Mac. In IE7 on WinXP, the autocomplete suggestions render underneath the round-cornered boxes, making all but the first one unreadable (although you can still see enough peeking out between boxes that

Problem with opacity in IE8

夙愿已清 提交于 2019-12-03 21:47:26
问题 I try to solve a problem that appears in IE8. Html is very simple: <div id="overlay"> </div> <div id="imgcontainer"> <div> <div id="source"> </div> </div> </div> When I set (using jQuery) opacity of "#source" element with "0" in IE I can see the background of #overlay, not #imgcontainer > div, but why? There is a javascript code: $(function(){ $("#source").css({ opacity: "0", }); $("#overlay").css({ width: $(window).width(), height: $(window).height(), display: "block", opacity: "0.6" }); $("

how to clear authentication cache on ie7 with Javascript?

℡╲_俬逩灬. 提交于 2019-12-03 21:43:41
We need to clear the authentication cache in IE with Javascript. On IE6 we use: document.execCommand('ClearAuthenticationCache'); and it works. On IE7 it doesnt work. what can i do? thanks... Grant Wagner Are you seeing any JavaScript errors (a yellow exclamation mark icon in the lower left corner)? Can you provide more details? Are you absolutely certain that line of code is executing (try adding alert('execCommand'); above and below it). It is possible some other JavaScript error caused by something that works in Internet Explorer 6 but does not work in Internet Explorer 7 is preventing that

IE7: How to make TD float?

♀尐吖头ヾ 提交于 2019-12-03 21:23:45
I want a set of <td> s to float left in IE7. They should break onto the next line if the window is too small. CSS table { width: 100%; } td { border: 1px solid red; } tr.f td { width: 500px; float: left; } HTML: <table> <tr class="f"> <td>1</td> <td>2</td> <td>3</td> </tr> </table> This works in IE8 and Firefox, but not in IE7. What am I doing wrong? Page rendering mode is "IE7 (Quirks)" or "IE7 (Standards)". I'm trying with IE8, though, trusting that IE7 rendering mode is what it says. "IE8 Compatibility View" is failing as well, only "IE8 Standards" gets it right. I don't think this is

CSS Transforms in IE7

邮差的信 提交于 2019-12-03 18:06:03
问题 Hi am using css transform in scale property my code is like this -webkit-transform: scale(1.05); /* Safari and Chrome */ -moz-transform: scale(1.05); /* Firefox */ -o-transform: scale(1.05); /* Opera */ -ms-transform: scale(1.05); /* IE 9 */ transform: scale(1.05); Here not supported in ie7 letyou known the answer please reply me ASAP. 回答1: I'm not sure I understand your question. CSS transforms are not supported in IE8 or older, where you have to have to use an IE matrix filter in order to

How to use HTML5 in IE 7?

笑着哭i 提交于 2019-12-03 17:33:11
问题 I was wondering whether there is a way to make html5 code visible in Internet Explorer 7 or less. For example <div id="container"> <header id="header"> something </header> </div> In Internet Explorer 7 the header is not shown at all. I found a workaround here, a IE HTML5 enabling script, which creates the html5 elements with javascript. But what happens is that the <header> tag looks not at all as it does in other browsers. So my question is, is it too early to use HTML5 yet or how can I make

Making Zurb's Foundation 3 work with IE7

喜欢而已 提交于 2019-12-03 17:15:26
问题 A solution has been proposed for making Zurb's Foundation 3 Framework work with IE7. Not necessarily complicated support, but certainly grid support. Solution is presented as: http://www.stormconsultancy.co.uk/blog/development/code-snippets/making-zurb-foundation-3-work-on-ie7/ I've tried to replicate this here: http://sausag.es/foundation/grid.html I've added a link to the htc file in my foundation.min.css The reference is relative to the HTML, not the CSS. I've added a line in htaccess

Can I get away with testing sites using IE8 with IE7 compatibility on?

▼魔方 西西 提交于 2019-12-03 16:42:38
问题 As a developer, can I safely upgrade to IE8 and use its IE7 compatibility mode to test how sites look in IE7? For IE6, I have a virtual machine and it is quite inconvenient. I don't want to upgrade to IE8 and then have another virtual machine now for IE7. Or is IE7 compatibility mode really different and I can't rely on that? 回答1: Compatibility mode in IE8 is not a 100% emulation of IE7. Security changes were not versioned, and some DOM operations were not versioned. Check out this blog post

Positioning divs with z-Index in Internet Explorer 7

[亡魂溺海] 提交于 2019-12-03 16:30:00
I have two relative positioned DIVs A & B. a has a DIV as child element called A' which is absolute positioned and has a z-index of 1000. DIV B' is a child element of DIV B and positioned absolute as well. Firefox renders this as expected: A'-B'-B-A(from nearest to farest from the user) However, in IE7 I get: B'-B-A'-A Please can someone help me out with a workaround? I've already wasted hours with this problem! Thanks in advance, Stephan The issue is that in IE7 and earlier, it basically "resets" the z-index inside of relative positioned items. If none of these work see 'The Last Resort'