View Single Post
Old 01-22-2009, 01:55 PM  
drocd
Confirmed User
 
Join Date: Aug 2007
Posts: 128
Try this:
Code:
$(document).ready(function(){
	$(".btn-slide2").click(function(){
		$("#panel2").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
       $("#panel2").slideToggle("fast");
       $(".btn-slide2").toggleClass("active");
});
__________________
230-699
drocd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote