Modify ↓
Ticket #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: | |
| Blocking: | Blocked by: |
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
comment:1 Changed 5 years ago by flesler
- Keywords accordion ie6 added
- Owner set to joern
- Component changed from core to plugin
comment:2 Changed 5 years ago by Siebird
I believe this is an issue with the core as I am not using the accordion plugin to achieve this effect.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
