123456789101112131415161718192021 |
- /*
- Template Name: Pobabini
- Author: <a href="http://www.os-templates.com/">OS Templates</a>
- Author URI: http://www.os-templates.com/
- Licence: Free to use under our free template licence terms
- Licence URI: http://www.os-templates.com/template-terms
- File: Back to Top JS
- */
- jQuery("#backtotop").click(function () {
- jQuery("body,html").animate({
- scrollTop: 0
- }, 600);
- });
- jQuery(window).scroll(function () {
- if (jQuery(window).scrollTop() > 150) {
- jQuery("#backtotop").addClass("visible");
- } else {
- jQuery("#backtotop").removeClass("visible");
- }
- });
|