I have an accordion style script that partially works (the .slideToggle() function part works fine). The problem I have is that the login-btn .toggle does not appear to work as part of the overall script.
I want the login-btn element (a class containing an arrowhead, similar to the jQueryUI accordian) to change position when the click event happens.
I'm not sure what exactly is the problem is, so, from the code below, any help would be greatly appreciated..
$(".acordian").click(function() {
$(this).next(".slider").slideToggle("fast", function(){
$('.login-btn').toggle(
function() {
$(this).css({'background-position':'0px 0px'});
},
function() {
$(this).css({'background-position':'0px -81px'});
});
});
});
Thanks..