I have a form submit button that I need to enable the user to be able to right click and get the "open in new window" option, so that the user can have the option of either submitting the form in the current window (by simply clicking the button) or in a new window (by right clicking and selecting "open in new window"). Is this possible?
I know I could sort of do this via creating a stand-alone link/image and use css to make it look like a button, and then use onclick to submit the form when clicked, but this would not work for users that does not have javascript.
UPDATE: To clarify, I am looking for a way to do this without using javascript, or confirm that it is actually impossible to do so without using javascript.
What you could do is have the stand-alone link/image with CSS as you propose, and then use a <noscript>
tag to replace it with a traditional form button when Javascript isn't available.