I'm working on a form for my website. The markup for the form tag looks like:
<form method="post" action="contactengine.php">
The form sends an email to me using action="contactengine.php" with the form information when a user submits it. Because of the page layout I have, however, I can't have the page reload when a user submits the form. How can I work around this issue?
Are you able to use javascript + jquery? Posting asynchronously is fairly simple with jquery.
Have the server respond with a
204 No Content
response (spec).Such: