Bug Tracker

Modify

Ticket #2988 (closed bug: worksforme)

Opened 5 years ago

Last modified 4 years ago

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.

comment:3 Changed 5 years ago by joern

  • Owner changed from joern to flesler
  • Component changed from plugin to core

Not related to accordion plugin.

comment:4 Changed 4 years ago by dmethvin

  • Status changed from new to closed
  • Resolution set to worksforme

I do not any problem with jQuery 1.3.2 and IE6. The reporter did not specify exactly what was going wrong.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.