Сообщение от Татьяна5
|
$('#tren') - это обращение по id, а не по name
|
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
body {
height: 1000px
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
$(".yakor").click(function(){
var target = "[name='"+$(this).find("a").attr("href").substr(1)+"']",
destination = $(target).offset().top;
$('body, html').animate( { scrollTop: destination }, 1100 );
return false;
});
});
</script>
</head>
<body>
<li class="yakor">
<a href="#tren">Тринажеры</a>
</li>
....
<p>
<a name="tren"></a>
Тренажеры
</p>
</body>
</html>