|
Hi
I have a following problem. I have two submits in one form:
<td>
<input type="submit" name="dispatch" value="back">
</td>
<td>
<input type="submit" name="dispatch" value="forward">
</td>
When I press Return on Keyboard the form is submitted by first tbutton(value="back"). I would like that after pressing Return it would submit by second button(value="forwar"). How to do that? How to intercept pressing a Return on Keybord?
|