Ticket #4935 (closed bug: fixed)
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: | |
| Blocking: | Blocked by: |
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
Change History
Changed 4 years ago by Panman01
-
attachment
accordion_test.html
added
comment:1 Changed 4 years ago by joern.zaefferer
- Milestone changed from TBD to 1.8
This should have been fixed by #4444. Need to verify.
comment:2 Changed 3 years ago by Maximus5684
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.


Example code