How do I change a form\'s action attribute right after clicking the submit button?
You can also set onSubmit
attribute's value in form tag. You can set its value using Javascript.
Something like this:
;
Remember that onSubmit
has higher priority than action attribute. So whenever you specify onSubmit
value, that operation will be performed first and then the form will move to action.