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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:36:38+00:00 2026-05-28T05:36:38+00:00

I have a form which is submitted via ajax triggered by an image click,

  • 0

I have a form which is submitted via ajax triggered by an image click, after the form is submitted it is returned and reloaded. However the .serialize() has stopped working.

here is some code:

<form id="myForm" action="/someFormSubmitPage.do">
    <div id="myFormQuestions">
        <input type="text" name="fred"/>
        <!--more inputs-->
    </div>
 <img id="submitButton" src="some/path">
</form>

image of the submit button triggers via .click in jquery the below function

var serializedForm = $("#myForm").serialize();
$.post("/someFormSubmitPage.do", serializedForm, function( data ) {
    //do some stuff with the data
    $( "#myFormQuestions" ).html(data);
});

this works fine on the first submit, but on the second, the var serialized form ends up as an empty string despite the user repopulating the inputs

EDIT:
I have now included a JSFiddle, however, im not sure how to use the ajax tesing echo thing.

  • 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-28T05:36:38+00:00Added an answer on May 28, 2026 at 5:36 am

    Can you check out what response are coming back? Cause I think that it’s the problem with DOM elements identification. The problem could be something like that:

    You have two elements matching $('#myForm') selector, and jQuery got lost. Try to modify this selector with $('form#myForm'). Try it, and post here what you have in response.

    Now, I’ve checked if it’s work fine, the code is:

    <div>
        <form id="myForm">
            <div id="inputs">
                <input name="some" type="text" />
            </div>
            <input type="button" id="my-form-submit" value="submit" />
        </form>
    
    </div>
    <script type="text/javascript">
        $('input#my-form-submit').on('click', function(e) {
            var data = $('form#myForm').serialize();
            $.post('/test.php', data, function(response) {
                $('div#inputs').html($(response).find('div#inputs'));
            });
        });
    </script>
    

    And that’s work fine, each time on submit page post to itself, then in response search for inputs and places inputs into form inputs dir.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form which is being submitted by ajax. Before submission, there's a
I have a form which takes both the user details and an image uploaded
I have a form which has a lot of SELECTs. For various reasons, I'd
I have a form which has only tab control in it. I want to
I have a form which is a mdicontainer and has a menu strip at
I have a bit of a conundrum. I have a form which has numerous
Do I have a way to retrieve post data submitted via HTML form? Particularily
I have a HTML form which when submitted sends an email with all the
I've got some HTML which has some dynamically generated forms which are submitted via
I have Resorts.aspx which loads content from ResortProducts.ascx into a div via Ajax. Resorts.aspx

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.