You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Accordion Pane Stopped Working in FireFox Created Jul 2, 2010

This thread is solved

Views: 786     Replies: 1     Last reply Aug 20, 2010  
You must login first before you can use this feature

Activant

Posts: 5

Registered:
Jun 8, 2010

Accordion Pane Stopped Working in FireFox

Posted: Jul 2, 2010

Has something changed in the last few days with the accordion tab interface and FireFox. I have an accordion interface that was working just fine a couple of days ago. As of this morning, it still works in IE, but not in FF. The code I used duplicates the demo. Here is the snippet of my code...



<!-- include the Tools -->
<script src="http://flowplayer.org/tools/download/combine/1.2.3/jquery.tools.min.js?select=full&debug=true"></script>

<div id="accordion">
	 
                    <h2><a href="javascript:void;" class="headerlink">headline</h2>

<div class="pane">

yada...yada...yada...

</div>	
                </div>
                 
                <!-- activate tabs with JavaScript -->
                <script> 
//Switch the "Open" and "Close" state per click
$("h2").toggle(function(){
$(this).addClass("current");
}, function () {
$(this).removeClass("current");
});

//Slide up and down on click
$("h2").click(function(){
$(this).next("#accordion div.pane").slideToggle("slow");
});

                </script>


Thoughts?

k-soc

Posts: 2

Registered:
Jun 22, 2010

Same problem

Posted: Aug 20, 2010

Reply to: Accordion Pane Stopped Working in FireFox, from Activant
Were you able to resolve this? I am having the same problem. Thanks.