Accessible Home/Next/Prev links
Posted: Mon Nov 28, 2005 4:27 pm
In order to increase the accessibility of web sites, I often use the a head section e.g.
Where index.php is the home page, sectionhome.php is the current section home page and next.php is the next page in the menu sequence and previous.php is the previous page in the menu sequence.
Is it possible todo this? i.e. are there already keywords for this. I'm thinking of using this with the Ell-Nav menu?
If not it may be a good idea to impliment as a module as although IE doesn't have support for it many other browsers do and it is good for accessibility!
Russ
Code: Select all
<link title="Home" href="index.php" rel="Index" />
<link title="Section Home" href="sectionhome.php" rel="Section" />
<link title="Next page" href="next.php" rel="Next" />
<link title="Previous page" href="previous.php" rel="Prev" />
Is it possible todo this? i.e. are there already keywords for this. I'm thinking of using this with the Ell-Nav menu?
If not it may be a good idea to impliment as a module as although IE doesn't have support for it many other browsers do and it is good for accessibility!
Russ