ie6-ie7-bug

CSS in IE6 and IE7 not rendering properly

Hello, My problem is the website i maintain displays fine on firefox ,chrome and IE8 but a mess when viewed with IE7 and IE6. I ran out of possible fixes i can come up with and its mostly trial and error. Im thinking of loading a separate stylesheet for IE6 and IE7 but i must solve this first. Here is the page : Search for a keyword ...

How to work around IE6/IE7 margins disappearing when relatively-positioned floated div is moved with jquery .hover()?

Here is my code: http://jsbin.com/uhera3/edit When I use jQuery to .hover(), the relatively positioned floated divs jump to the left (seemingly losing their margins) in IE7. Any ideas how to fix this? ...

XSLT - How to get IE consitional statements working in an XSTL

I've noticed IE conditional statements don't work in the transformed XML document. How do I get IE 6 and above to process them. Code as follows '<!--[if IE 6]><style type="text/css" media="all">@import "/css/ie6.css";</style>' Thanks. ...

IE6, IE7: stretch last li to cumulative width of previous li's

Given this markup: <ul class="grafiek"> <li class="first-child">item</li> <li>item</li> <li>item</li> <li>item</li> <li>item</li> <li class="last-child">item</li> </ul> How do I make it appear, cross-browser, like so: In other words: the last item (with the fake pseudo-class last-child) should always stretch...

IE7 failing to remove an element according to it's href attribute

Ah, is it ever really over if there's still an IE? Thanks to the invaluable help of Stack Overflowers, I have my jQuery working perfectly in FF, Safari, Chrome & Oprah. Naturally, it fails in IE7, which evidently has trouble href attributes, e.g.: $('li a[href="' + title + '"]').parent().remove(); Can someone shed some light on an a...

jQuery tab IE7,IE6 bug: ajax has no GET request

I remove initialIndex:0, so http://dl.dropbox.com/u/6594481/tabs-2010/get-request1.html#two.html will get one ajax GET request in Firebug console. Unfortunately it stopped to get ajax request for http://dl.dropbox.com/u/6594481/tabs-2010/get-request1.html on IE7 and IE6, on other browsers it works fine. What is the issue for that? check...

How can I position a child element behind its parent in IE7 and earlier

I'm trying to create a blurred drop shadow (similar to the CSS3 box-shadow) in Internet Explorer. The most logical way to do this seems to be to find all elements that need a shadow in IE, and inject a new div inside of them using jQuery. This new div will fill the exact same space as its parent, and it can then be blurred using IE's b...

jQuery .attr not working in IE6 & IE7

Hello The javascript code below is about half way on my php page, I can't directly modify the radio buttons with IDs q_251_789 and q_251_790 on my page unfortunately, hence why I'm using JS to add attributes to those two radio buttons: <script><!-- $("#q_249_249").hide(); $("#q249").hide(); $("#q_251_789").attr("onClick","yesClicked();...

Relative positioned child whithin a relative positioned parent disappears in IE7

Hello all, For few days i'm looking for a good solution for my problem, but with no success. Here is my code: <ul style="list-style: none; position: relative;"> <li style="float: left;"><span style="position: relative; left: 5px; ">one</span></li> <li style="float: left;"><span>two</span></li> <li style="float: left;"><spa...

IE7 Z-Index Issue

On the site I'm currently working on there is a nested unordered list in the sidebar, when an <li> from this list is hovered over, it shows the (previously hidden) child <ul>. This is working fine in all browsers except IE 7+6. In these browsers the popup <ul> displays beneath the <li>'s of the list above. Any idea why it would be doing ...

Issue with IE7 hiding/removing/showing content using jQuery

So I have a bit of script at the bottom of my page //RETAINER CURRENT that is supposed to hide and show content based on what menu item the user selects in the maincontent area. Unfortunately in IE7 all layers are rendered which means the videos in each layer play simultaneous. I tried .detach, .remove, methods and had no luck and when I...

Internet Explorer 7.0 CSS Hack

Good day, I'm in need of inserting a Hack to a web page, so it works well on IE7.0 But I'm having issues with the way I'm doing things. It should be simple. The actual CSS code is the following: <style type="text/css"> body { margin:0;} #home_splash { background-image:url(homeimages/image-background.jpg);background-repeat:repeat-x; ba...

Floated+cleared element not affecting following floated elements in IE7 - is there a workaround?

I'm trying to style a definition list so that dt tags start new rows, and can be followed by any number of dd elements on the same row. In modern browsers this is as simple as dt { float:left; clear:left; } dd { float:left; } In IE7, however, if the clearing element has float, subsequent floats are not affected. (example) ...

jQuery Lightbox Not working in IE7/6

We are using a heavily modded version of the jquery lightbox plugin to create a lightbox with a gallery on the side. However, when I do $('.popup').lightBox({fixedNavigation:true}); IE 7/6 gives me an error on that line. This works on every other browser. Now of course, being IE 7 and 6, theres no actual error description, so I'm not ...

jquery error "Invalid property value."

EDIT: This error happens because in IE6 and IE7 these attributes are required for a textarea element. Code: $(document).ready(function () { var ASP_txtNotes = 'ctl00_cphBody_txtNotes'; $("#" + ASP_txtNotes).removeAttr("cols"); // <-- Error here } Error: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; ...

Error when trigger click event in IE6/IE7 (jquery)

Hi, I have this code: $("#boxId ul li a:eq(0)").click(); Works ok in IE8 and FF, but I'm getting error in IE6 and IE7. "Object doesn't support this property or method" Someone knows why? Obs: $("#boxFoto ul li a:eq(0)").size(); // returns '1' ...