2022-11-24 08:39:31 +03:00

9 lines
160 B
JavaScript

$(function()
{
$("#to_form_button").on("click", function(event)
{
$('html, body').animate({
scrollTop: $("#order").offset().top - 100
}, 200);
});
});