Permanent Redirect. $(function(){ $(".close").click(function(){ if(window.history.length <= 1){ window.close(); }else{ history.back(-1); } }) }); $(function() { $(".navTopConItem>a").mouseenter(function() { $(this).addClass("active").siblings().stop().animate({ "max-height": "400px" },1500) }).mouseleave(function() { var $this = $(this) var time = setTimeout(function() { $this.removeClass("active").siblings().stop().animate({ "max-height": "0px" }, 10) }, 50); $(".navTopConItem .showItem").mouseenter(function() { clearTimeout(time); }).mouseleave(function() { $this.removeClass("active").siblings().stop().animate({ "max-height": "0px" }, 10) }) }); });