Показать сообщение отдельно
  #5 (permalink)  
Старый 04.04.2011, 14:42
Профессор
Отправить личное сообщение для Matre Посмотреть профиль Найти все сообщения от Matre
 
Регистрация: 07.01.2011
Сообщений: 582

(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>
Ответить с цитированием