Skip to main content

Search and Top Navigation

#4935 closed bug (fixed)

Opened October 29, 2009 07:32PM UTC

Closed July 13, 2010 12:48PM UTC

AutoHeight in IE6 and Links

Reported by: Panman01 Owned by:
Priority: minor Milestone: 1.8.2
Component: ui.accordion Version: 1.7.2
Keywords: accordion, ie6, autoheight, ie 6, links, href, Cc:
Blocked by: Blocking:
Description

It seems that IE 6 with accordions that have the autoHeight option set to false have issues with links. When switching to another accordion pane, the links in the content show but disappear. However, regular text and such is ok. Attached is some example code.

Attachments (1)
Change History (3)

Changed November 16, 2009 09:18AM UTC by jzaefferer comment:1

milestone: TBD1.8

This should have been fixed by #4444. Need to verify.

Changed June 28, 2010 10:29PM UTC by Maximus5684 comment:2

I can verify that this is not fixed as of version 1.8. Here is the fix to correct the issue:

In ui.accordion.js, find the following statement:

if(a.browser.msie) {

this.element.find("a").css("zoom","1")

}

and replace with:

if(a.browser.msie) {

this.element.find("a").css("zoom","1");

this.element.css("zoom","1");

}

Adding zoom:1 to each main element (the elements following the headers) resolves the issue.

Changed July 13, 2010 12:48PM UTC by scottgonzalez comment:3

milestone: 1.91.8.2
resolution: → fixed
status: newclosed

This was fixed in a previous release.