my code structure is like this I think after on load, besides fadeOut, the js function on also stops and stop running. how can this be written? Update $(document).ready(function () { $(".pageloading").show(); var curIndex=0; ...
$(".help_cover").mouseenter(function(event) { $(".layout_help_cover").fadeIn(); }); $(".help_cover").mouseleave(function(event) { $(".layout_help_cover").fadeOut(); }); how can I write this code? I think this ...