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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:56:41+00:00 2026-06-08T13:56:41+00:00

I am trying to create a post using Ajax and jQuery. But it isn’t

  • 0

I am trying to create a post using Ajax and jQuery.

But it isn’t working. It just refreshes the current page.

HTML :

<form name="update_text_post" action="" id="update_text_post" method="post">
    <textarea name="textbox" class="textbox" maxlength="600"></textarea>
    <input type="submit" name="submit" value="Update" class="update_post_submit">
</form>

jQuery :

$('#update_text_post').submit(function(e) {
   e.preventDefault();
    $.ajax({
        type: "POST",
        url: "post_ajax2.php",
        data: dataString,
        cache: false,
        success: function (html) {
            $("#wallwrap").prepend(html);
            close_box();
            $('#update_text_post').resetForm();
        }
    });
 return false
});

The e.preventDefault(); is not working aswell.. it actually is not even performing the MYSQL query . Seems like it is not even sending the form or targeting the post_ajax2.php file.

  • 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-08T13:56:43+00:00Added an answer on June 8, 2026 at 1:56 pm
    // 1. you missed $ here, so it will not be a dom ready callback.
    // your case is just define a function, and without executing it.
    $(function () {
          $('#update_text_post').submit(function (e) {
              // 2. you need to prevent the default submit event.
              e.preventDefault(); 
              $.ajax({
                  type: "POST",
                  url: "post_ajax2.php",
                  data: dataString,
                  cache: false,
                  success: function (html) {
                      $("#wallwrap").prepend(html);
                      close_box();
                      $('#update_text_post').resetForm();
                  }
              });
          });
      });
    
      function afterSuccess() {
          $('#update_text_post').resetForm(); // reset form
          close_box();
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create an auto generated post excerpt from the current page's post
I am trying to create a dynamic set of dropdown boxes, using jQuery/AJAX and
I am trying to learn how to post some data using $.ajax through jquery
Im trying to create an ajax (post) event that will populate a table in
I'm trying to create a depth of field post process, but have no idea
I've been trying to get this really simple example of using AJAX with JQuery
I'm trying to access a 3rd party api over http using jquery .ajax (or
I am trying to use jQuery with Rails and AJAX to accept a post
I'm trying to pass an array like this using jQuery, but the PHP script
Using jquery1.7.1 and django1.3 ,I was trying to make a post request through ajax,in

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.