$(function () { $(".leftNav-item li").hover(function (e) { var alias = $(this).attr("lay-data"); var str = $(this).attr("data-fooc"); var icon = $(this).children("i").attr("class"); if (!alias) { return false; } $(this).append(setlayer(alias, str, icon)); $(this).children("div").show(300); }, function (e) { $(this).children("div").remove(); }); $(".for-top").click(function () { console.log("Are You Ok?"); $('html,body').animate({ scrollTop: 0 }, 600); }) })