Thanks Arie. That does do it, for IE and Firefox. I found that in Chrome though we need to use a javascript assist to get the click to confer focus on the link. So in addition to your excellent suggestion above, we also need to change the links from:
Code:
<a class="thumbnail" href="#thumb">
to:
Code:
<a class="thumbnail" href="javascript:void(0);" onclick="this.focus(); return false;">
If you want one displayed as the page loads, you can add a unique id to it, ex:
Code:
<a id="first" class="thumbnail" href="javascript:void(0);" onclick="this.focus(); return false;">
And then at the bottom of the page, just before the closing </body> tag, add the highlighted as shown:
Code:
<script type="text/javascript">
document.getElementById('first').focus();
</script>
</body>
</html>
Bookmarks