Hello
I one of my project I have used following code in click event, it alerts FALSE two times,,
as per you said it should alert Once TRUE and once FALSE.
Code:
$('.box_c_heading .wToogle').click(function(){
var status=$(this).is(":hidden");
alert(status);
$(this).parent().next().slideToggle('fast');
var status=$(this).is(":hidden");
alert(status);
});