Hi,
Im new to jquery and have been looking at the ScrollTo effect.
Ive used Ariel Flesler plugin for ScrollTo.
I want the whole page to scroll.
My problem is that when javascript is off, i would like to revert to anchored links.
I tried anchored links, but it overrides the jquery.
Any help of would be great or a tutorial in unobtrusive ScrollTo
html
<div id="page1">
<a name="P1">1</a>
<a href="#P2">2</a>
<a href="#P3">3</a>
</div>
<div id="page2">
<a href="P1">1</a>
<a name="#P2">2</a>
<a href="#P3">3</a>
</div>
<div id="page3">
<a href="P1">1</a>
<a href="#P2">2</a>
<a name="#P3">3</a>
</div>
jquery file
$("#screen1").click(function() {
$.scrollTo('#screen2', 2000);
});