is there any way to scroll down to an anchor link with jquery?
like:
$(document).ready(function(){
$("#gotomyanchor").click(function(){
$.scrollSmoothTo($("#myanchor"));
});
});
?
|
is there any way to scroll down to an anchor link with jquery? like:
? |
||||
|
|
|
Here is how i do it:
Then you just need to create your anchor like this:
You can see it on my website. |
|||||||
|
|
I would use the simple code snippet from CSS-Tricks.com: |
||||
|
|
jQuery.scrollTo will do everything you want and more! You can pass it all kinds of different things:
|
|||||||
|
|
Here's the code I used to quickly bind jQuery scrollTo to all anchor links:
|
|||
|
|
|
Best solution I have seen so far: jQuery: Smooth Scrolling Internal Anchor Links |
|||
|