E-mail List Archives
RE: Skip Nav and the <link> tag
From: julian.rickards
Date: May 11, 2004 7:23AM
- Next message: Mike Stenhouse: "RE: Skip Nav and the tag "
- Previous message: Sandy Clark: "Skip Nav and the tag "
- Next message in Thread: Mike Stenhouse: "RE: Skip Nav and the tag "
- Previous message in Thread: Sandy Clark: "Skip Nav and the tag "
- View all messages in this Thread
There are two issues you are dealing with: the link to an id and the link
using the <link> tag. Unfortunately, neither are fully supported except by
the most current browsers, Gecko-based and Opera and possibly Safari/KHTML
although I can't test them as I am neither on a Mac, nor on Linux (KDE).
The <a name="xxx"></a> construct has been deprecated: name is now replaced
by id (in most circumstances, not in the case of forms where <input
type="text" name="firstname"> is still valid). Therefore <a href="#content">
in current browsers will jump the user to <div id="content">. This is the
first issue.
The second is the use of the <link> tags which while valid are only seeing
use and support in recent years (1 or 2 years) with Opera 7+ and Gecko
browsers. To see the links in Firefox, you need an extension which will show
you them in the status bar and allow you to link to them. In Opera, they are
displayed at the top of the document window.
Regarding accessibility, they are perfectly fine except that IE doesn't
display the <link>s and doesn't support a link to an id such as <a
href="id_name"> --> <div id="id_name">. Essentially, what you accomplish by
using these is to provide additional methods of navigating your pages and
site using valid and legal techniques but, just like the p>a child selector,
may not be supported by all browsers.
If it is important that <a href="#content"> be supported, then you need <a
name="content"></a> so that IE6 and older browsers can use it.
---------------------------------------------------------
Julian Rickards
Digital Publications Distribution Coordinator
Publications Services Section
Ontario Ministry of Northern Development and Mines
Phone: (705) 670-5608
Fax: (705) 670-5690
>
- Next message: Mike Stenhouse: "RE: Skip Nav and the tag "
- Previous message: Sandy Clark: "Skip Nav and the tag "
- Next message in Thread: Mike Stenhouse: "RE: Skip Nav and the tag "
- Previous message in Thread: Sandy Clark: "Skip Nav and the tag "
- View all messages in this Thread