When I check a checkbox
<form action="">
<input type="checkbox" id=“checkbox” name="area" value="storage">
Storage
</form>
I want to show and when I uncheck it I want it to be hidden!
I have the following as a start:
$('#checkbox').click(function(){
if ($('#checkbox').attr('checked')) {
/* NOT SURE WHAT TO DO HERE */
}
})