I have a \"Menu\" button on the left hand side of the page and once selected I have a div containing the menu items show. I then have another button that can be selected to hid
Use this...
$('#cat_icon').click(function () { $('#categories').toggle("slow"); //$('#cat_icon').hide(); }); $('.panel_title').click(function () { $('#categories').toggle("slow"); //$('#cat_icon').show(); });
See this Example
Greetings.