Anchor html speed with jquery -
i use code format anchor speed, doesn't work on ie (7,8,9 & 10) , firefox. can tell me doing wrong , how optimize anchor speed?
$('a.anchorlinks').on('click', function(e){ e.preventdefault(); var divid = $(this).attr('href'); var position = $(divid).position(); $('body').animate({scrolltop: position.top}, 1000); });
instead of position, use offset() http://api.jquery.com/offset/
Comments
Post a Comment