views:

858

answers:

2

Hi,

So there are two constraints to my question:

  1. I must use an external function call in my click event, and
  2. I must use a live click event, rather binding a typical click event.

So my problem is that I'm trying to unbind a click event after it occurs, and then rebind it once the click event code is complete. I'm doing this to prevent duplicate clicks while code is currently in process (I have fadeIn/Out animation that will allow the button to be clicked twice or three times rapidly, thereby executing my code 2 or 3 times, which is nto desired). The code I'm using is below:

$item.live("click", handleClick);

and

function handleClick(ev) {

    $(this).die("click");

    // perform code here, including things with 'ev'

    $(this).live("click", handleClick);
}

Am I crazy, or should this be working with no problems? Right now, I can click once, but not again afterward. So clearly the die() is working, but it's not being re-bound for some reason to that function. I have verified that it does reach the code in handleClick() to re-bind the live click.

Any ideas? Any help would be greatly appreciated. Thanks.

+3  A: 

According to the documentation:

Live events currently only work when used against a selector.

$(this) is not a selector.

Greg
@Greg, interesting. Maybe if I assigned the live click event in the function as such: `var $tempVar = $('#' + $(this).attr('id'))`, and then said `$tempVar.live("click", handleClick)` Do you think this would work?
Mega Matt
I *think* so...
Greg
Yes that will work
PetersenDidIt
A: 

You should use bind and unbind instead of live and die respectively. It should work.

Shyam Krishna Khadka