Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
$("showhide").click(function(){
var $this = $(this);
if( $this.is('.selected') ) {
$this.removeClass('selected');
$this.addClass('hidden');
}
else {
$this.removeClass('hidden');
$this.addClass('selected');
}
return false;
});
$(document).ready(function(){
//your toggle function goes in here
});
1 to 3 of 3