What is the code for a selection... Like faq pages where you click a question and it points you to /faq/#selection? Anyone know?
sure thing .. put in the client ( wanted ) section of the page <a name="Whateverrr">bla bla bla</a> and if u want the link to take u to that section <a href="#Whateverrr"> Jump to bla bla bla</a> or if its in another page u can use this : <a href="http://www.sitename.com/Pagename.htm#Whateverrrr"> Jump to bla bla bla</a>
Do you mean anchor links? <a href="#copyright">Jump to copyright</a> Code (markup): At the bottom of your page: <a name="copyright">© YourSite.com 2004-2009</a> Code (markup): Is that what you mean?
question must be clear (straightforward) then anyone can help about that, so i think MhW describing right, follow him please...
For each section on the page have: <a name="section1">Text text text</a> Code (markup): Then on the page you want to link to it just have <a href="/faq#section1">Section 1</a> Code (markup):
if a page's absolute url is xyz--xyz.com/xyz/xyz.xyz and an anchor text on the page is named abc, the anchor text (here, your answers for each question) can be directly linked as xyz--xyz.com/xyz/xyz.xyz#abc Now how you use the absolute path for relative case, depends on you.