Hi all, In a jquery code, I am dynamically showing and hiding some content.
if (this.hide()) {
this.show();
}
else {
alert("Hello");
this.hide();
}
But else part is never getting executed.why?