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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:21:10+00:00 2026-05-30T02:21:10+00:00

I have an ajax form I would like to prevent from preforming an action

  • 0

I have an ajax form I would like to prevent from preforming an action when submitted and have tried numerous methods and nothing works. My first method was:

 return false;

and then I tried

event.preventDefault();

event being the callback name or whatever you call it.

function(event) {
    event.preventDefault();
};

Heres the HTML I am using right now:

<form class="main_search" method="POST" action="ajaxsearch.php">
    <input type="text" class="editable" placeholder="Search">
</form>

Heres the test javascript I set up:

$('.main_search').submit(function(event) {
    event.preventDefault(console.log(event)); //Log the event if captured
});

Neither method works but the weird part is that they work on different things like buttons but they don’t work on this one form. Am I missing something here? 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-30T02:21:12+00:00Added an answer on May 30, 2026 at 2:21 am

    To deal with your specific problem (ie, inserting dynamically generated form), use $.on(). You’re better off not using document.body as the parent observer (as $.live() essentially does) with $.on(), so the following would be appropriate (considering your actual markup):

    <div id="searches">
        <form class="main_search" method="POST" action="ajaxsearch.php">
            <input type="text" class="editable" placeholder="Search">
        </form>
    </div>
    
    var $main_search = $('.main_search'),
        $searches = $('#searches');
    
    $searches.on('submit', '.main_search', function(event) {
        event.preventDefault();
        console.log(event); //Log the event if captured
    });
    
    setInterval(function(){
        $searches.append($main_search.clone());
    }, 5000);
    

    http://jsfiddle.net/5TVGn/2/

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

Sidebar

Related Questions

I would like to have Ajax form in Rails so i'm using form_remote_tag. The
I have a form that I would like to endow with wonderful Ajax-submission goodness
I have an ajax form that I would like to submit, and the response
I have a simple form which I would like to submit (i.e fire ajax)
I have an Ajax form that updates a div when submitted with a submit
I have a certain ajax form and when submitted I want to include another
I would like to post a form using ajax and jquery to a .asmx
I have a form field that I would like to empty immediately the submit.
I have a button that I would like to disable when the form submits
i have a Zend Form and i would like to use jquery to do

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.