Here's a more detailed description of the issue:
I have 1 form on a web page. The form has two buttons. One is a plain textual button. The other button is an image. The textual button is assigned a JavaScript function and will is not supposed to submit the form. The image button is the button that should be submitting the form. However, when I press Enter in the form, the browser will treat it as clicking on the textual button (performing the JavaScript). How do I set up the form so that pressing Enter tells the browser to click on the image button and thus, submitting the form?
thanks,
don