This is my current code:
<select tabindex="2" id="resolvedformsel" name="resolved">
<option selected="selected" value="yes">resolved</option>
<option value="no">not resolved</option>
<option value="mu">not a support question</option>
</select>
<input type="submit" value="Change" id="resolvedformsub" name="submit">
I want to use key combination (like Ctrl+Alt+1) to make select "resolved" and do "submit" at once. I'm doing this modification for support forum and it would be convenient to have hotkey to mark threads resolved.
I don't include jQuery! It has to be pure JS solution. Any ideas?
In other words: what is JS equivalent of jQuery's keypress/keydown?