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 8729391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:49:29+00:00 2026-06-13T08:49:29+00:00

If I have many forms generated by PHP and want a Reply button on

  • 0

If I have many forms generated by PHP and want a “Reply” button on each of them, where it sends the content of the form via ajax to another php page, then can I use the same javascript snippet for all of these elements?

<form id="foo">
    <label for="bar">A bar</label>
    <input id="bar" name="bar" type="text" value="" />
    <input type="submit" value="Reply" />
</form>

So if I do something like the following, then can I still handle all the responses individually and display the response ONLY on the element that “Reply” was clicked on?

$("#foo").submit(function(event){
    $.ajax({
        url: "/form.php",
        type: "post",
        data: serializedData,
        // callback handler that will be called on success
        success: function(response, textStatus, jqXHR){
            // log a message to the console
            console.log("Hooray, it worked only in the element it was clicked in!");
        });
    // prevent default posting of form
    event.preventDefault();
 });
  • 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-06-13T08:49:30+00:00Added an answer on June 13, 2026 at 8:49 am

    If you want to handle all forms on the page, your code could work with minor changes.

    $("form").submit(function(event){
        $.ajax({
            url: "/form.php",
            type: "post",
            // You have to have a way to retrieve the form data
            data: getFormData(form),
            success: function(response, textStatus, jqXHR){
                console.log("Hooray, it worked only in the element it was clicked in!");
            });
        // prevent default posting of form or just return false
        event.preventDefault();
     });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have many forms generated dynamically via PHP. I'm trying to verify that all
I have many forms that use AJAX (w/ jQuery) for validation and data submission.
I have a form MainForm which is a Windows Forms form that contains many
On my page I have many forms, in witch field ids are generated based
I have a dynamically generated form that I would like to submit using Ajax.
I have a Tcl/Tk app that generates many forms and would like to be
In my application I have many different JSP forms with multiple stages, that is
If I have a single page with many forms of existing records: index.html.haml -
I have quite a large VB6 project, with many forms, classes, modules and user
my team have built many tools for our project using win forms and Visual

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.