PDA

View Full Version : HTML Question 2


MattRix_Of_Smeg
04-30-2004, 04:43 AM
Next HTML question for you all, I am looking to add this sort of thing to my pages:

# (http://javascript.internet.com/master-list/num-master-list.html) | A (http://javascript.internet.com/master-list/a-master-list.html) | B (http://javascript.internet.com/master-list/b-master-list.html) | C (http://javascript.internet.com/master-list/c-master-list.html) | D (http://javascript.internet.com/master-list/d-master-list.html) | E (http://javascript.internet.com/master-list/e-master-list.html) | F (http://javascript.internet.com/master-list/f-master-list.html) | G (http://javascript.internet.com/master-list/g-master-list.html) | H (http://javascript.internet.com/master-list/h-master-list.html) | I (http://javascript.internet.com/master-list/i-master-list.html) | J (http://javascript.internet.com/master-list/j-master-list.html) | K (http://javascript.internet.com/master-list/k-master-list.html) | L (http://javascript.internet.com/master-list/l-master-list.html) | M (http://javascript.internet.com/master-list/m-master-list.html) | N (http://javascript.internet.com/master-list/n-master-list.html) | O (http://javascript.internet.com/master-list/o-master-list.html) | P (http://javascript.internet.com/master-list/p-master-list.html) | Q (http://javascript.internet.com/master-list/q-master-list.html) | R (http://javascript.internet.com/master-list/r-master-list.html) | S (http://javascript.internet.com/master-list/s-master-list.html) | T (http://javascript.internet.com/master-list/t-master-list.html) | U (http://javascript.internet.com/master-list/u-master-list.html) | V (http://javascript.internet.com/master-list/v-master-list.html) | W (http://javascript.internet.com/master-list/w-master-list.html) | X (http://javascript.internet.com/master-list/x-master-list.html) | Y (http://javascript.internet.com/master-list/y-master-list.html) | Z (http://javascript.internet.com/master-list/z-master-list.html)

Then when you click that particular letter it takes you to the appropriate section on the page (all titles are listed on the 1 HTML page), so for example if you click M it takes you down to the letter M where all the movies beginning with...you know, M, are listed.

Again many thanks for the help folks.


:beer:

PhilEnfield
04-30-2004, 09:10 AM
If you give each section, in your movie list the Heading of A, B, C etc., you should just be able to use the url with #A, #B etc. as a hyperlink for each letter, as below :

http://www.YOURPAGE.html#A
http://www.YOURPAGE.html#B

etc. ....... just set the hyperlink for each letter, then test it to check for any duplicates .

LemmyUK
04-30-2004, 02:02 PM
You menu at the top wants this

<a href="#a">a</a> | <a href="#b">b</a> etc

Your headings need this

<a name="a">a</a> etc