calin-beard
11/13/2017 - 4:34 PM

Disable smooth scrolling for onpage links. Disable scroll animation

Disable smooth scrolling for onpage links. Disable scroll animation

<script>
    $(document).ready(function() {
        $('#element-384 a').unbind(); // specific element for which to disable it.
        $('.onpage-link').unbind(); // for all onpage links on the page
    });
</script>