Answers for "Tristin Mays in Supergirl"

0

Tristin Mays in Supergirl

$('.btnMedio').click(function(event) {
    // Preventing default action of the event
    event.preventDefault();
    // Getting the height of the document
    var n = $(document).height();
    $('html, body').animate({ scrollTop: n }, 50);
//                                       |    |
//                                       |    --- duration (milliseconds) 
//                                       ---- distance from the top
});
Posted by: Guest on January-09-2021

Browse Popular Code Answers by Language