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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:14:35+00:00 2026-06-15T09:14:35+00:00

I originally wanted a submit to take place on a single click event: $(#booking_Form

  • 0

I originally wanted a submit to take place on a single click event:

    $("#booking_Form #submit_Booking").bind("click", function(event){.....

I then found (obviously) that a double click led to a duplicate submission.

So I tried capturing and suppressing this with:

    $("#booking_Form #submit_Booking").bind("dblclick", function(event){
          return false;
    });

But the single click event still fired twice.

Am I correct it thinking that if it is imperative that a double click does not submit twice that I must change the single click event to a double click event.

Or is there some global way to switch off double clicks.

  • 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-15T09:14:36+00:00Added an answer on June 15, 2026 at 9:14 am

    You should use .one(). That way all subsequent clicks will do nothing

    $("#booking_Form #submit_Booking").one("click", function(event) {
        //do something
    });
    

    Link: http://api.jquery.com/one/

    EDIT:
    If you want to use .one(), how about doing something like this…

    JAVASCRIPT:

    $(document).ready(function(){
         $("#b1").one("click", function(e){
            ajaxFunction();
         });   
    
        function ajaxFunction(){
             $("#b1").one("click", function(e){
                 ajaxFunction()
             });
    
            $.ajax({
                type: "POST",
                url: "http://fiddle.jshell.net/", //use actual URL
                success: function(data){
                   //do something    
                }
            });           
        }
    });​
    

    DEMO:
    http://jsfiddle.net/BKqm9/13/

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

Sidebar

Related Questions

Originally I wanted to ask this question , but then I found it was
I've got an extended WebBrowser control which handles the NewWindow3 event. Originally I wanted
After it turned out that what I originally wanted is probably not possible w/o
i have several classes with members called 'Id'. Originally i wanted to store these
I wanted to call the following function from OS X's DVDPlayback framework: OSStatus DVDGetMediaVolumeCFName
Is there something I'm missing with NSUInteger. I originally wanted to do this in
Originally i wanted to know whether ToList allocates more memory than using the constructor
I have a script that I had originally left as one long function. #!
I originally had a submit button like this <form action=<?php $self ?> method=post >
I am building a simple twitter application. I Originally wanted to use XML but

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.