Bitte helft mir,
das smooth scroll mit jquery funktioniert auf meiner seite nicht! Habe schon so viele verschiede js codes probiert... denke ich habe alles richtig eingebunden der alert ging teilweise auch aber nie die animation. Ich weiss einfach nicht woran es liegen könnte wisst ihr was ich falsch mache?
mein anker:
Code
$(".overdue").each( function() { alert("Your book is overdue.");
});
// JavaScript Document
$(document).ready(function() {
//Smoothscroll
$('a[href^='#']').bind('click.smoothscroll',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target;
});
});
//EndSmoothscroll
Alles anzeigen