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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:49:56+00:00 2026-06-04T22:49:56+00:00

I have a function assigned to a click event on a calendar – I

  • 0

I have a function assigned to a click event on a calendar – I need the click event in live() because the standard .click() does not bind itself to the newly displayed days when you switch months in the calendar – which triggers some AJAX based on the calendar date selected.

I need to prevent the user from firing any more AJAX until the previous request has completed so achieved this by immediately unbinding the click listener with .die('click'). However, I am unable to bring the eventWrap click listener back to life again with $('.eventWrap').live('click') from within itself it would appear.

Is there a solution to my problem?

$('.eventWrap').live('click', function() {
     $('.eventWrap').die('click');

     do ajax stuff

     //bring the .eventWrap click listener back to life
     //$(.eventWrap).live('click'); does not work as I had hoped

}
  • 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-04T22:49:58+00:00Added an answer on June 4, 2026 at 10:49 pm

    You could simply add a class within the click, and only do ajax if the class doesn’t exist

    $('.eventWrap').live('click', function() {
        if( ! $('.waitingForAjax').length ){
            $('.eventWrap').addClass('waitingForAjax');
    
             do ajax stuff- use removeClass() within the ajax success handler
        } else{
            alert('Waiting for last ajax to complete');
        }   
    });
    

    Use on() instead of live() if using jQuery 1.7

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

Sidebar

Related Questions

I have the following script which works fairly well: $(.btnMinimize).live('click', function(event) { event.preventDefault(); $(
I have assigned a click event to a button, which retrieves a different HTML
basically i have this click function in jquery: (this is just a snippet, not
If you bind a click event to a class: $(.testClass).click( function() { $( this
I have an event that binds a function to a click. The click calls
I have 1 function that I want to return the address of an assigned
I have function Start() that is fired on ready. When I click on .ExampleClick
with the following three lines: $( .thumb ).bind( mousedown, function() { $('.thumb').not(this).unbind('mouseenter mouseleave'); });
I have a simple function in which a user will click on a div,
I have a case where a click handler is defined/assigned in one jQuery code

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.