Tag : Back to Top link using jQuery

 Scroll to top link using jQuery or Back to Top link using jQuery <html> <head> <title></title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('a[href=#top]').click(function() { $('html, body').animate({ scrollTop: 0 }, 'slow'); return false; }); }); </script> </head> <body> <div id="top"></div>this is sample example for going to top from botton of blog <br /><br /><br /><br ..

Read more