Topic: Hide Show Forum Categories with Jquery
Hide Show Forum Categories with Jquery
based on this:
http://docs.jquery.com/Tutorials:Basic_Show_and_Hide
I'm trying to hide this:
<div id="category1" class="main-content main-category">
would this be correct, and where do I put this code???
$(document).ready(function() {
$('#hidecategory1').click(function(){
$('div.showhide,category1').hide();
});
$('#showcategory1').click(function(){
$('div.showhide,category1').show();
});
});
thanks