Is it possible to make a form submit button that allows users to right-click and select the "open in new window" option? This would give users the choice of submitting the form in the current window by simply clicking the button, or in a new window by right-clicking.
I've considered creating a standalone link or image that looks like a button using CSS, and then using onclick to submit the form when clicked. However, this method wouldn't work for users without JavaScript enabled.
UPDATE: I am looking for a solution that doesn't rely on JavaScript or confirmation that achieving this functionality without JavaScript is impossible.