borus,
было
$(".cities li a").on('click',function () {
var elementAncor = $(this).attr("href"); //устанавливаем точку старта
jQuery("html:not(:animated),body:not(:animated)").animate({scrollTop: elementAncor}, 1900);
return false; //запускаем анимировании scroll
});
стало
$(".cities li a").on('click',function () {
var elementAncor = $(this).attr("href"); //устанавливаем точку старта
elementAncor = elementAncor.substring(1)
elementAncor = '[name="'+elementAncor+'"]'
elementAncor = $(elementAncor).offset().top
$("html:not(:animated),body:not(:animated)").animate({scrollTop: elementAncor}, 1900);
return false; //запускаем анимировании scroll
});
http://jsfiddle.net/jmcrmtcw/2/