I am trying to create a basic a accordian style menu. Im guessing i have done 90% of the code, but a little stuck now.
I have three widget and what I am attempting to do is hide all the widgets apart from the one actually clicked. My code so far is as follows.
$(".widget-title").click(
function () {
$("#widget1_content").hide(); //My Widgets
$("#widget2_content").hide();
$("#widget3_content").hide();
$(this).parent().next().toggle(); // Toggle the Content Box
$(this).parent().parent().toggleClass("closed-widget"); // Toggle the class "closed-widget"
$(this).parent().find(".content-box-tabs").toggle(); // Toggle the tabs
}
);
Any help would be appriciated.