internet-explorer-6

some none IE browsers are showing true for IE6 Browser detection

久未见 提交于 2020-01-15 11:10:32
问题 So I'm running jQuery 1.3.2 (yep it's old and right now I can't upgrade). Problem is I'm trying to drop IE6 support for our internal site and upgrade the browser. I have this check if($.browser.msie && $.browser.version=="6.0") { // do something... } But during testing (some) Firefox users are seeing the do something condition and should'nt be. Here are some of the User Agents that I think might be causing the issue. UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML,

Make text in a <div> wrap around a child element

谁都会走 提交于 2020-01-15 07:52:27
问题 In Word you can place an image on a page and have the text flow nicely around it. I was wondering how far one can get towards this using CSS, noting that is has to work in IE6. I already have something sort of close using float, but the floated child-element still 'blocks' text above it. So it partially wraps. Is it possible to put a child div at some arbitrary position in the parent, and have text flow around it freely? The actual use-case here is to put illustrations inside the main content

How to find slow-down in Javascript in IE6

為{幸葍}努か 提交于 2020-01-14 10:26:29
问题 Something's slowing down my Javascript code in IE6 to where there's a noticeable lag on hover. It's fine in FF, so using firebug isn't that helpful. What tools are out there to help debug this in IE? A little more info: I don't think there's actually any JS running on the objects that I'm mousing over. (At least none that I've put in.) Just css :hover stuff. Also, I've got both jquery and dojo running on the project, so who knows what they're doing in the background. 回答1: Just a tip of what

How to find slow-down in Javascript in IE6

孤街浪徒 提交于 2020-01-14 10:26:09
问题 Something's slowing down my Javascript code in IE6 to where there's a noticeable lag on hover. It's fine in FF, so using firebug isn't that helpful. What tools are out there to help debug this in IE? A little more info: I don't think there's actually any JS running on the objects that I'm mousing over. (At least none that I've put in.) Just css :hover stuff. Also, I've got both jquery and dojo running on the project, so who knows what they're doing in the background. 回答1: Just a tip of what

Faking Fixed Position in IE6

情到浓时终转凉″ 提交于 2020-01-14 05:40:13
问题 I have a site that utilizes a bottom fixed position masthead here: http://www.entheospartners.com/newsite/ This setup works great in all browsers except IE6, which doesn't support fixed positioning in the least, so here's what I've done: When an IE6 user comes to the page, I make the determination if scrolling is necessary using this bit of code: var windowHeight = $(window).height(); var totalHeight = windowHeight - 100; // where 100 is the sum of the top nav height + footer height var

IE6: select inside jQuery tabs does not render dropdown list

♀尐吖头ヾ 提交于 2020-01-13 11:38:09
问题 I have a form inside jQuery tabs; I create tabs in a simple way: $("#tabs").tabs({selected: 1}); The selected index 1 is the tab where form is placed. The problem is, on remote computer with IE6 both selects only display a small blank line instead of list with options when dropdown arrow is clicked: Incorrect dropdown http://queen3.at.tut.by/DropDownIE6jQuery.PNG The options are there in page source, and everything actually works on other machines, in other browsers and also in IE6 (though I

jQuery .html() not displaying any data in ie7, but ie8 works

[亡魂溺海] 提交于 2020-01-11 09:10:12
问题 So who doesn't have issues with ie7 ? It seems that I cannot get ie7 to recognize some data. I have created a wordpress theme for a client of mine, and this allows them to put in extra information in the wordpress meta fields through the admin so they can display extra info. I have written a small jQuery script that looks at an images alt and title to gather this info and write it into a div. Below is my script. <script type="text/javascript"> //<![CDATA[ jQuery(document).ready(function(){

IE6 extra padding on bottom

末鹿安然 提交于 2020-01-11 09:09:49
问题 I have a div tag styled through CSS. I set the padding to 10px (padding:10px), it works just as I wanted in Firefox and IE7, but in IE6 it adds additional padding at the bottom (about 2-3px I think). Anyone has idea about what's happening here? [update] I just noticed this, the div tag I'm talking about has a background-image. When I removed the background-image, the extra padding on the bottom disappears. Any ideas? [another update, code sample] Here's the CSS applied to my div tag: .user

jQuery .html() not displaying any data in ie7, but ie8 works

筅森魡賤 提交于 2020-01-11 09:09:27
问题 So who doesn't have issues with ie7 ? It seems that I cannot get ie7 to recognize some data. I have created a wordpress theme for a client of mine, and this allows them to put in extra information in the wordpress meta fields through the admin so they can display extra info. I have written a small jQuery script that looks at an images alt and title to gather this info and write it into a div. Below is my script. <script type="text/javascript"> //<![CDATA[ jQuery(document).ready(function(){

IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes

匆匆过客 提交于 2020-01-11 06:38:29
问题 I have a page where there is a column and a content div, somewhat like this: <div id="container"> <div id="content">blahblahblah</div> <div id="column"> </div> </div> With some styling I have an image that is split between the column and the content but needs to maintain the same vertical positioning so that it lines up. Styling is similar to this: #column { width:150px; height:450px; left:-150px; bottom:-140px; background:url(../images/image.png) no-repeat; position:absolute; z-index:1; }