Sha256: 0ca030cfd403569e7cac6830f0c8a7962b1e5d8ed7fb545f10cd25e95b827118
Contents?: true
Size: 568 Bytes
Versions: 41
Compression:
Stored size: 568 Bytes
Contents
$(document).ready(function(){ // hide #back-top first $('#back-top').hide(); // fade in #back-top $(function () { $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('#back-top').fadeIn(); } else { $('#back-top').fadeOut(); } }); // scroll body to 0px on click $('#back-top a').click(function () { $('body,html').animate({ scrollTop: 0 }, 800); return false; }); }); });
Version data entries
41 entries across 41 versions & 1 rubygems