internet-explorer-7

Floating and clearing in IE7

十年热恋 提交于 2019-12-11 03:03:14
问题 Currently I'm trying to implement a HTML 5 site. On one of the pages I I have the following HTML structure <ul class="catList"> <li class="cat rowStart"> <h4>Title</h4> <p class="shortDesc">Consetetur sadipscing elitr... Consetetur sadipscing elitr... Consetetur sadipscing elitr...</p> </li> <li class="cat"> <h4>Title</h4> <p class="shortDesc">Sanctus sea sed takimata ut vero voluptua...</p> </li> <li class="cat"> <h4>Title</h4> <p class="shortDesc">At vero eos et accusam et justo duo dolores

JSON structure not working in IE7 (JavaScript)

最后都变了- 提交于 2019-12-11 02:47:47
问题 OK, I'm new to JSON so please forgive me if my question is a little ignorant - I've beat my head against the wall too much and need some expert advice. I'm trying to get a simple example working where an HTML page uses jQuery's JSON/AJAX functions to make a call to an example PHP page which passes back a simple JSON data structure and then the page uses jQuery to write one of the elements from the data structure to the page. Works in FF. Doesn't work in IE7 arrrggghhhh! HTML Code (relevant

JavaScript error in IE7 & IE8: SCRIPT5007: Unable to get the value of property 'newQuestion': object is null or undefined

时光毁灭记忆、已成空白 提交于 2019-12-11 02:38:32
问题 I've been looking all over and can't come up with a solution. The following code works perfectly in IE9, Chrome, FF, and Safari. However, when you hit "Start" in IE7 or IE8 you get the following error: SCRIPT5007: Unable to get the value of property 'newQuestion': object is null or undefined The code at issue is here: //This is used to reduce some code size and not type document.getElementById(a) each time function DOMelem(a) { return document.getElementById(a); } //This is used to round

overflow: auto in IE7 leaves room for the scrollbar when resizing

强颜欢笑 提交于 2019-12-11 02:35:04
问题 Because a customer requested it, I've changed a div to position: absolute; top: 5px; bottom: 5px; overflow: auto; min-width: 945px; which basically works fine in all supported browsers (IE7, IE8, Firefox 3+): It makes the div fill out the available area vertically, and show a vertical scrollbar if it doesn't fit. Note that without the min-width of 945px, the scrollbar would overlay a part of the content, since the content is not resized properly when the scrollbar is added in all Internet

IE7 stops making network requests after a while

删除回忆录丶 提交于 2019-12-11 02:06:29
问题 Our (asp.net) system is part of a larger system. It is launched via this larger system from javascript that does a window.open call to open a new window. (aside, authentication data etc is passed into our system via an encrypted query string parameter) When testing with IE7 (unfortunately the organization has standardized on this) the browser will, after using our system (navigating around pages) for a while (its intermittent), start not making network requests. Pressing F5 causes it to show

Why Doesn't IE7 recognize my css padding styles on anchor tags?

百般思念 提交于 2019-12-11 01:26:20
问题 My site is working fine in Firefox, Safari, Chrome, and Opera, but for some reason IE7 is not recognizing css padding on any anchor tags. I can't figure this out. In IE7, if you look at the tabs that say "exclusives|popular|recent comments" on the homepage http://revolvermag.com, you'll see that there is no padding getting applied. I've worked around the padding not getting applied to anchor tags elsewhere on the site, but here it looks especially bad. Anyone know of CSS fixes for this? 回答1:

IE7 dropdown menu appears behind image

萝らか妹 提交于 2019-12-11 01:14:47
问题 I have created this css3 dropdown menu that appears behind the image when I mouse over the dropdown menu, and I have tried to figure it out. But cant for the life of me. Any help is greatly appeciated you can take a look at it here. 回答1: Quoting from this thread Z-index is not an absolute measurement. It is possible for an element with z-index: 1000 to be behind an element with z-index: 1 - as long as the respective elements belong to different stacking contexts. When you specify z-index, you

IE7 Shrink-to-fit bug

巧了我就是萌 提交于 2019-12-11 00:44:48
问题 The entire page is an iframe onto another website (in this case, jquery.com just for demo purposes). I have an overlay "Hello World", and if you click on the X it minimizes it (click again it will open it). It all works fine on IE8, Firefox, Chrome, etc... However in IE7 it extends the white background to the entire width (see screenshot). I believe it's something to do with the shrink-to-fit or shrink-wrapping. 回答1: Testing with IE8 compatibility mode, if on div.sidebar I remove background

jquery ui datepicker doesn't disappear in IE7 after selection

不羁岁月 提交于 2019-12-10 23:56:10
问题 Got the jQuery UI datepicker plugin working wonderfully, however, when using IE7, the calendar doesn't fade away after you make a selection like it does in FF, Safari, etc. Here's the URL http://www.mchenry.edu/insideApp/OIRPprojectrequest/oirpprojectrequestform.aspx I hope it's something silly, 'cuz IE7 is the only browser I need to support for internal clients. Thnx! EDIT: Try this URL, http://www.mchenry.edu/test/oirpprojectrequestform.aspx Sorry 'bout that! 回答1: Webpage error details User

padding is not used in ie7

笑着哭i 提交于 2019-12-10 23:54:52
问题 I used a padding in select list of gender but its not working in ie7. its working properly in all browser ie8, firefox, safari but not working in iee7 i tried a lot but nothing happened... <div class="clear" style="margin-top:5px; float:left; text-align:right"> <% @sex = [['male', '0'],['female', '1'], ['others', '2']] %> <%= select_tag :sex, options_for_select(@sex), :style=>"padding-left:15px; width:100px; height:30px;padding-left:15px;vertical-align:middle;" %> </div> Thanks Mayur Mate 回答1