Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3680674
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:36:15+00:00 2026-05-19T03:36:15+00:00

I have an email form on an HTML page and once you click submit

  • 0

I have an email form on an HTML page and once you click submit to send the form submission I would like the DIV “form” to update or be replaced to say a ‘Thank you’ message.

Tried Googling this, but didn’t have much luck finding anything specific that I can use.

Any ideas?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T03:36:15+00:00Added an answer on May 19, 2026 at 3:36 am

    You can use jQuery.ajax method:

    $.ajax({
      url: 'ajax/send_mail.php',
      data: "message="+$('#some_field').val(),
      success: function(data) {
        //replace form (form is in div <div id="form"><form>Form data</form></form>)
        $('div#form').html('<p>Thank You!<p>');
        //or $('div#form').html(data); if you are returning message from send_mail.php
      }
    });
    

    If You are having problems i can write You a whole script (i’m just in the mood and have some spare time):)

    UPDATE:

    Basically this is it.

    Copy/paste this as your form:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="hr-HR" lang="hr-HR">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Title</title>
    <script type="text/JavaScript"  charset="utf-8" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
    <script type="text/javascript">
    $(function () {
     $('#submit').click(function(){
      $.ajax({
       type: "GET",
        url: 'sendit.php',
        dataType: 'json',
        data: $('form#mail_form').serialize(),
        success: function(data) {
        if(data.success==1){
       $('div#form').html(data.message);
       }
        }
      });
      return false;
     });
    });
    </script>
    </head>
    <body>
     <div id="form">
      <form id="mail_form">
      <div>
       <input type="text" name="subject" id="subject"/>
      </div>
      <div>
       <textarea name="message" id="message"></textarea>
      </div>
      <div>
       <input type="submit" name="submit" id="submit" value="Send"/>
      </div>
      </form>
     </div>
    </body>
    </html>
    

    Copy/paste this as you sendit.php:
    You MUST validate this data

    //do stuff, send mail, save to database,...
     $data['success']=1;
     $data['message']='Thank You!';
     echo json_encode($data);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Rails form for email, and I would like to have auto-completion
I would like to address such a issue: I have a HTML form (like
i have a html page sth.html containing <div id=recoverpass> <h2>Recover Password</h2> <form action=# method=post
i have a simple contact us form and i need to send an email
I have an HTML5 form set up like so: <form id=contact-form action=php/email.php> <fieldset> <ul
I have created a Django app. I have a registration page(simple HTML form) in
I have an HTML form, being submitted to a PHP page. The PHP page
I have to send an email having all content in html that can be
I have a form for logging: val loginForm = Form(tuple( email -> (nonEmptyText verifying
I have a form that validates the email address and I want to be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.