Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML page submission without redirection

Is there any method to submit an html form without redirecting from the current page without using ajax?

like image 381
raki Avatar asked Feb 08 '26 04:02

raki


1 Answers

you can set a target="" for your form - so you could submit your form to a new tab (target="_blank") or to a small, hidden iframe (target="nameofmyiframe")

like image 73
oezi Avatar answered Feb 12 '26 05:02

oezi