Submit HTML form to self page
Question:
How to submit HTML form ton self page? Answer:
<!-- Just leave out the action attribute altogether -->
<form method="post">
Description:
The action
attribute defines the URL that processes the form submission. If action
is missing, the form will be submitted to the document's address, i.e. the same page.
Reference:
form element reference
Share "How to submit HTML form ton self page?"
Related snippets:
Tags:
html form submit, submit to self, html, submit, action, self Technical term:
Submit HTML form to self page