Forum Moderators: not2easy
In your opinion, is it worth my while?... how relevant is source ordered content today?
One simple workaround is to have a skipNav div immediately following the body tag, with CSS @media rules governing the presentations (plural)
e.g
HTML
<body>
<div id="skipNav">
<a href="#menu" title="Skip to the Navigation Menu">Navigation</a>
<a href="#intro" title="Skip to the Main Content">Main Content</a>
</div>
CSS
@media screen {
#skipNav {
display:none;
}
}
@media handheld {
#skipNav {
display:inline;
}
}