Scroll to top function

    [javascript]
    $(function () {
    $("#white-paper-call-out").click(function () {
    $(‘html, body’).animate({
    scrollTop: $("#form-lawyerist").offset().top
    }, 2000);
    $(".white-paper-input").focus();
    return false;
    });
    });
    [/javascript]

    Leave a Reply