October 15, 200817 yr Get it too link to a certain part of the page . What I mean is when you click a ling eg faqs and it takes you to the part of the page where that q is. Sorry hope this makes sense
October 15, 200817 yr Two components to this: one is the link itself, and the other is a placeholder link where you want the page to scroll to. <a href="#somewhere">Click here to go further down the page</a> and then further down the page you would have this: <a name="somewhere"></a> That second placeholder link won't show up anywhere on your page so it won't interfere with anything, neither will it be clickable so it's not going to do anything. But when someone clicks on the first link it will scroll to that placeholder.
Create an account or sign in to comment