I have a form
:
<form method="post" action="/whatIwroteintotheInputfield">
<input type="text" onchange="this.form.submit();"></input>
</form>
The form is being posted after inserting a value. Now I don't just want to refresh the site, but redirecting to /whatIwroteintotheInputfield.
How can I achieve that?
Thanks for reading!