nndeveloper
8/23/2018 - 9:44 PM

BACK TO TOP

 <button id="top">na vrh</button>
 
 <script>
   // back to top
$("#top").click(function() {
  $("html, body").animate({ scrollTop: 0 }, "slow");
  return false;
});
 </script>