It really shouldn’t be this hard.
Clicking on each link works – every combination of alt/ctrl/shift + 1 does not.
What is my illiteracy? (Code passes W3C validator).
<?xml version="1.0" <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Scheduler Welcome</title>
<!-- set cache to 5 minutes (300 seconds) -->
<meta http-equiv="Cache-Control" content="max-age=300" />
</head>
<body>
<div id="notneeded">
<p>Type the number (or click) your selection</p>
<ol>
<li><a accesskey="1" href="http://www.google.com" >One</a></li>
<li><a href="#two" accesskey="2">Two</a></li>
<li><a href="#three" accesskey="3">Three</a></li>
<li><a href="#four" accesskey="4">Four</a></li>
<li><a href="#five" accesskey="5">Five</a></li>
<li><a href="#six" accesskey="6">Six</a></li>
<li><a href="#seven" accesskey="7">Seven</a></li>
</ol>
</div>
<div id="trythis">
<a id="one"></a><p>This is one</p>
<a id="two"></a><p>This is two</p>
<a id="three"></a><p>This is three</p>
<a id="four"></a><p>This is four</p>
<a id="five"></a><p>This is five</p>
<a id="six"></a><p>This is six</p>
<a id="seven"></a><p>This is seven</p>
</div>
</body>
</html>
I’ve also tried it with the normal
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
as opposed to the mobile.
What am I not seeing? (Firefox 4.0.1. IE 8.0)
grNadpa