function b(){ h = $(window).height(); t = $(document).scrolltop(); if(t > h){ $('#gotop').show(); }else{ $('#gotop').hide(); } } $(document).ready(function(e) { b(); $('#gotop').click(function(){ $(document).scrolltop(0); }) $('#code').hover(function(){ $(this).attr('id','code_hover'); $('#code_img').show(); },function(){ $(this).attr('id','code'); $('#code_img').hide(); }) }); $(window).scroll(function(e){ b(); })