On my site, I have some buttons, I'd like it so that when the user presses TAB, the first button is focused, if they press TAB again, the second button is focused, etc.After the button is focused on, I'd like the user to be able to press ENTER to press the button.This behavior doesn't occur on my site, how do I implement it? My buttons are implemented by using divs, and giving them width/height + background color.Here is a part of my site,
<div id="menu"><div class="menubutton" onclick="mapmenu()">Maps</div><div class="menubutton" onclick="showtutorial()">Tutorial</div></div>I'd like the user to be able to use TAB to navigate the Maps / Tutorial buttons, (I have more buttons on other parts of my site, they are hidden however)