Posted by João Martins on 13 Apr 2026

How to Submit a Form to Google Sheets Using jQuery AJAX

Use jQuery AJAX to submit forms to Google Sheets without page reload


If your website already uses jQuery, you can easily submit forms to Google Sheets using AJAX. Form2Sheet's API works perfectly with jQuery's $.ajax method, giving you a smooth no-reload submission experience.

Step 1: Prerequisites

The first step in integrating Form2Sheet is to subscribe either monthly or yearly.
Then, go to https://form2sheet.com and create your first spreadsheet.

Screenshot
(Email received after creating a spreadsheet)


Step 2: Building Your jQuery AJAX Form

Create an HTML form with jQuery AJAX to submit data to Form2Sheet without reloading the page. Make sure to replace the $API_URL with the one you received in your email (check your spam folder as well).

<form id="contact-form">
  <label>Name:</label>
  <input type="text" name="name" />
  <label>E-mail:</label>
  <input type="email" name="email" />
  <label>Message:</label>
  <textarea name="message"></textarea>
  <button type="submit">Submit</button>
</form>

<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script>
  $('#contact-form').on('submit', function(e) {
    e.preventDefault();
    $.ajax({
      url: '',
      method: 'POST',
      data: $(this).serialize(),
      success: function() {
        $('#contact-form').html('<p>Thank you! Your response has been recorded.</p>');
      }
    });
  });
</script>


Step 3: Submitting the Form

In the GIF below, you can see how after submitting the form you check the results in your Spreadsheet.

Screenshot

Besides that, you and the respondent will receive a confirmation email with the data submitted.

Screenshot
Screenshot


And that's is! Simple as that. Aditionally, you can create Unlimited Spreadsheets, customize the Thank You page, add as many Custom Form Fields as you want and remove the Form2Sheet branding from the emails.

Screenshot


Conclusion

Congratulations! You can now go ahead and publish your custom form. It is now ready to start collecting responses. With Form2Sheet, the process is streamlined, and you can focus on obtaining valuable data without the hassle of complicated setups.

If this made you curious, go ahead and check our pricing below.


Related Guides