Opened 15 years ago
Closed 14 years ago
#2988 closed bug (worksforme)
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>
Change History (4)
comment:1 Changed 15 years ago by
Component: | core → plugin |
---|---|
Keywords: | accordion ie6 added |
Owner: | set to joern |
comment:2 Changed 15 years ago by
comment:3 Changed 15 years ago by
Component: | plugin → core |
---|---|
Owner: | changed from joern to flesler |
Not related to accordion plugin.
comment:4 Changed 14 years ago by
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.
Note: See
TracTickets for help on using
tickets.
I believe this is an issue with the core as I am not using the accordion plugin to achieve this effect.