internet-explorer-7

font-size 0 still shows up in IE7

扶醉桌前 提交于 2019-12-13 04:58:42
问题 For some odd reason, when I set a font-size:0px; in my style-sheet for an anchor link, IE7 still shows a tiny-tiny version of the text. Is there anything I should consider doing to completely hide the text, without using text-indent? The anchor itself is using a background image in the css. And I simply want to hide the text that in the anchor link, on the HTML page. 回答1: visibility: hidden and display: none are the standards in hiding elements. The difference between the two is that

Legend doesn't float left on IE7

∥☆過路亽.° 提交于 2019-12-13 04:41:50
问题 I am having trouble on IE7. I have following html format. <fieldset class="wrapper"> <legend class="ct">Legend </legend> <div class="ct">Div 1</div> <div class="ct">Div 2</div> </fieldset> And this is the css style .wrapper .ct { display:inline-block; *display:inline; /*IE7*/ float:left } when I test this on other browser it works fine but IE7 does not. Please see screenshot below. But if I use div instead legend then it works. Here is on Jsfiddle 回答1: Andres almost had it. Add a "*float:

margin:auto not working in IE7

匆匆过客 提交于 2019-12-13 04:36:55
问题 I have a paging control on my site that has it's container element set to margin:auto so that the pager control are centered within the element. It works great on all browsers except for IE7. In fact, I just realized my site has several issues with IE7 and I'm trying to work through them all. However, I've been stuck on this one for some time. Take a look at this page. (I know there are other IE7 issues on this page, focusing on the pager controls first). If you use IE9, you can hit F12 and

Jquery form no submission to IE7 and IE8

心不动则不痛 提交于 2019-12-13 04:25:16
问题 I am currently using this plugin to send images as an attachment to an email as well as some other json data, and i am getting the proper results. But just not from IE7 and IE8, its not sending at all.. I have no idea why.. Suggestions anyone? Here's the jsFiddle . and then the javascript: var g_counter = 1; var dependant = ["dependant"]; var group; var upload_input_passport = ["upload-passport-1"]; var upload_input_id = ["upload-id-1"]; var surname_input_groups = ["surname-group-1"]; var

Fancybox giving white page in ifame on IE7

旧城冷巷雨未停 提交于 2019-12-13 04:23:50
问题 I am using <a href="content.aspx?id=21" class="fancybox fancybox.iframe">Content</a> to show this content in iFrame in fancybox. But in IE7 fancybox coming white blank box. Any body have any idea to solve this issue? 回答1: If using the latest version of fancybox (v2.1.4) try disabling the iframe preload in your custom script like : $(".fancybox").fancybox({ iframe : { preload: false } }); 回答2: This is a right solution, but iframe preload can be usefull in many cases. The only case we need to

Applying hasLayout to the i element via zoom or inline-block causes it to line break in IE7

↘锁芯ラ 提交于 2019-12-13 03:54:41
问题 I've had to apply hasLayout to the <i> element to avoid an IE7 bug in which sentences with italics obscured images that those sentences were on the same horizontal line as. I've done so using either the zoom property or the display: inline-block property. But now, any phrase in italics causes the italic portion to behave as if it were it's own block... kinda... or, it just doesn't break or wrap like a normal sentence would, in IE7 only. IE8 and FF work normally. Example code: <!DOCTYPE html

Issue with IE not calling JQuery .load() function on page refresh - traced to image caching

爷,独闯天下 提交于 2019-12-13 03:35:11
问题 This one has me scratching my head... Working on a client site, they asked for a quick splash screen. This should cycle through a couple of images (the last one being their logo), then fade out and the main page fades in. I found some code over at http://tutorialzine.com/2010/11/apple-style-splash-screen-jquery/ which works fine on FF, but is causing problems with IE7. In IE7, the splash screen cycles until it gets to the last image, then stops - it does not fade out to the main page, it just

JQuery .hover() not working in IE7 or compatability mode for each version of IE

£可爱£侵袭症+ 提交于 2019-12-13 03:11:34
问题 I'm building a menu that allows the user to hover over the given topic, and a menu drops down to reveal an array of different options. Everything works fine in Safari, Chrome, Firefox, Opera, IE9 - IE8 (non-compatability view), but IE7 is doing something weird. In HTML, my menu is built like this: <div id="menu_container"> <div id="menu_collapse"> <div id="menu"> <div id="home_button"> </div> <ul> <li>Television</li> <li>Radio</li> <li>Get Involved</li> <li>Non-Profit Services</li> <li

IE7 css block relative position with Javascript bug

£可爱£侵袭症+ 提交于 2019-12-13 02:59:57
问题 I have a simple JS script that moves a CSS block at a specific path when a value is given to it. You can take a look at the code here http://jsfiddle.net/rayshinn/6DGfb/ This code seem to work fine on Chrome and Firefox except IE7. The error I get from IE is as follows Line: 27 Char:13 Error: Object doesn't support this property or method Code: 0 URL: http://localhost/test/js/plot.js Line 27 is as follows marker = document.getElementById("marker"); this.setPosition(INITIAL_X, INITIAL_Y);

ie save onunload bug

徘徊边缘 提交于 2019-12-13 02:43:04
问题 I have a dynamic ajaxy app, and I save the state when the user closes the explorer window. It works ok in all browsers but in IE there is problem. After I close twice the application tab, i can't connect anymore to the server. My theory is that the connection to the server fail to complete while the tab is being closed and somehow ie7 thinks that it has 2 outstanding connections to the server and therefore queues new connections indefinitely. Any one has experienced this, any workaround or