Side navigation
#2988 closed bug (worksforme)
Opened June 05, 2008 12:41PM UTC
Closed October 04, 2009 01:47PM UTC
Simple "Accordian" type effect crash IE6
Reported by: | Siebird | Owned by: | flesler |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | accordion ie6 | Cc: | |
Blocked by: | Blocking: |
Description
Hi,
This bug has been puzzling me for days and can't seem to figure out why IE6 doesn't like it. A working example is here:
http://www.baublitz.com/dailey/precast-resources.htm
The script:
<script type="text/javascript"> $(document).ready(function() { $(".accordian").hide(); $("#resources h3").click(function() { $(this).next(".accordian").slideToggle('slow') .siblings(".accordian:visible").slideUp("slow"); }); $("#resources h3").mouseover(function() { $(this).addClass("over"); }); $("#resources h3").mouseout(function() { $(this).removeClass("over"); }); }); </script>
Attachments (0)
Change History (4)
Changed June 06, 2008 01:07AM UTC by comment:1
component: | core → plugin |
---|---|
keywords: | → accordion ie6 |
owner: | → joern |
Changed June 10, 2008 06:50PM UTC by comment:2
I believe this is an issue with the core as I am not using the ''accordion plugin'' to achieve this effect.
Changed July 13, 2008 12:44PM UTC by comment:3
component: | plugin → core |
---|---|
owner: | joern → flesler |
Not related to accordion plugin.
Changed October 04, 2009 01:47PM UTC by comment:4
resolution: | → worksforme |
---|---|
status: | new → closed |
I do not any problem with jQuery 1.3.2 and IE6. The reporter did not specify exactly what was going wrong.