(function ($) {
$.fn.preventJump = function (time) {
return this.click(function (event) {
$("body").animate({
scrollTop : $("#" + this.href.split("#")[1]).offset().top
}, time || 500);
event.preventDefault();
});
};
})(jQuery);
$("a.test").preventJump(300);
<a href='#test' class='test'>
Тест
</a>
...
<div id='test'>
Сюда
</div>