Anchor Attribute List

href
Determines the action of the anchor when you click on it. Can contain the following possible values:

URL: An http:// website or page.

href="http://www.whatever.com"

JavaScript: JavaScript protocol, which can perform small scripts, or a function.

href="javascript:function()//"

Email: Email address that sends you to an email with the written address.

href="mailto:ScripTVX@webtv.net"

Jumping Link: An address starting with # to an inner link within the same page.

href="#link_name"

Extra url attribute
Add ?wtv- to the end of any url and that will prevent the URL of the link to show when you press [CMD]+[CTRL]
mailto extra attributes
All mailto attributes must be placed at the end of the email address following a ?. Like mailto:ScripTVX@webtv.net?subject=whatever.
subject
Add a small subject already to the email you want them to send. Replace spaces with a '+' symbol. Like <<>a href="mailto:ScriptVX@webtv.net?subject=Anchor+help+needed"<>>

no_signature=true
Add this to the end of the email address to take off someone's signature automatically.
name (inner links)
Not many people understand what an inner link is. This is how an inner link works. You use the anchor tag to declare an inner link by giving an anchor a name. Example: <<>a name="question_1"<>>Question 1:<<>/a<>>. Now if you create an anchor with #link_name as the href, you will jump to the location of the name. Example: <<>a href="#question_1"<>>Go to Question 1.<<>/a<>>. Clicking this link will take you to the anchor with the name "question_1". You can also scroll to the top or bottom of a page by making an href as #top or #bottom respectively. Top or Bottom
nohighlight
This attribute, which has no value, gets rid of the yellow cursor around the link, making a "water mark" or hidden link. Example: <<>a href="www.oocities.org" nohighlight<>>Geocities<<>/a<>> or No border!
insetselection
This attribute, which has no value, causes the border to be inversed. It will appear in the inside of the link rather than the outside. Example: <<>a href="oocities.com" insetselection<>>Geocities<<>/a<>> or Invert border!
nextright nextleft nextdown nextup
These attributes will cause the navigation of an anchor on press the up, down, left, or right keys on the keyboard. The jump is determined by the name put into the attribute. Example: <<>a href="oocities.com" nextright="yahoo"<>>Geocities.com<<>/a<>> <<>a href="yahoo.com" name="yahoo">Yahoo.com<<>/a<>>. Now where ever Yahoo.com is placed, doesn't matter, if you press right on Geocities.com, it will jump to Yahoo.com!

Example:
Press up and you'll go down!
Press down and you'll go up!

selected
This attribute, which has no value, will cause a link to automatically be highlighted when the page loads, no matter where the link is on the page. Example: <<>a href="oocities.com" selected<>>Geocities<<>/a<>>
target
This attribute directs the action of a link when a frame or iframe is present. Please see frames tutorials for more details.
onMouseOver onMouseOut onClick
These attributes deal soley with JavaScript, please see JS tutorials for more information.
Brought to you by ScripTV