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>