vyk
vyk

Reputation: 41

Access keys not working in chrome

Problem is that the focus does'nt seem to shift to the footer links when access key 0 is pressed in chrome.Works okay for IE and firefox.Here's what am doing,

<ul class="hidden">
   <li><a href="javascript:;" onclick="javascript:this.href='#Footer';" accesskey="0">Footer</a></li>
</ul>

<div id="FooterDiv">
<a id="Footer" name="Footer" href="javascript:;" class="hidden">Footer</a>
//More footer links here.

</div>

Upvotes: 4

Views: 1609

Answers (1)

Ryan B
Ryan B

Reputation: 3392

I don't have Chrome available right now, but try alt+shift+Key. Think they implemented it like Firefox did.

Upvotes: 1

Related Questions