cadijob,
кто его знает что вы творите, но попробуйте так
$(".tags li").click(function(){
if (CloseArea === false) {
if($(this).is(".gmak")){
alert("test");
$(this).removeClass("gmak")
}
else {
$(this).css( "transform", "scale(0.85)" );
TagsPick.push($(this).children().attr("href"));
$(this).addClass("gmak")
}
}
});