HTML accesskey 'e' not working in Chrome

Viewed 11046

I assigned access key e to email input field in a simple html form. I am currently testing this in chrome. So on pressing Alt + e, instead of switching focus to the email input field, the Chrome menu get activated.

How should I go around with this? How to gain focus to the input element on pressing Alt + e.

Any ideas?

Thanks

2 Answers
<a href="#U" id="AU" name="U" title="右上方功能區塊" accesskey="U" tabindex="3">:::</a>

Give it a name="U",and href="#U" name=href, and Chrome will work.

Related