JavaScript
- 3 ответа
- 0 вопросов
2
Вклад в тег
destination = $(elementClick).offset().top;
?$(document).ready(function(){
$('a[href^="#"]').click(function () {
var elementClick = $(this).attr("href"),
destination = elementClick.offset().top;
if($.browser.safari){
$('body').animate( { scrollTop: destination }, 1000 );
} else {
$('html').animate( { scrollTop: destination }, 1000 );
}
return false;
});
});