Jquery did not carry out!!!I don’t know why
$(".other-edithion").click(function(){
var city = $(this).closest('#city');
if (city.is(":hidden"))city.fadeIn("slow");
else {city.fadeOut("slow");}
});
$("#city").mouseleave(function(){
$("#city").fadeOut("slow");
});
You do not need .closest() if you have id of an element
As jQuery.closest()
If
#cityis not up through dom tree, selector will fail to match elements.And for mouse leave,