I have a couple of buttons on my simple html web page which call some javascript:
<input type="image" src="button_start.png" onClick="start();">
<input type="image" src="button_stop.png" onClick="stop();">
<input type="image" src="button_reset.png" onClick="reset()">
What I want is to be able to press three separate keyboard keys and just have them 'press' the buttons or call the javascript code. What's the easiest way to go about this?