For some reason the alert is not being called, can someone please help me debugg this?
$(document).ready(function () {
// Keep filter hidden
//$("#filter_bar").hide();
$('#filter_bar').click(showFilterBar);
});
function showFilterBar(){
alert('got in here');
if ($("#filter_bar").is(":hidden")){
$("#filter_bar").show();
}
else
{
$("#filter_bar").hide();
}
}