$(function() { $("#text").on("focus",function(event) { $("#success").show(); }) $("#text").on("blur",function(event) { if($(event.relatedTarget).closest(".addpost").length) return; $("#success").hide(); }) });