JQuery scrollTo issue... Grrr.
JQuery scrollTo issue... Grrr.
Out of context: Reply #7
- Started
- Last post
- 17 Responses
- 3030
I am using jQuery scrollTo and this how I handle the clicking and scrolling:
$("#mainNav li.scrollTo a").click(function(){
var $an = jQuery(this).attr("href");$.scrollTo($an, {duration: 800, axis:"y", onAfter:function() {
location.hash = $an;
}
});return false;
});