How can i once bind click with live function? So i tried:

$('.expansion_button').die('click', function(){
   $('.expansion_button').live('click', expansion);
});

But this, twice bind click after ajax qery;

How can i fixed?

(my english is poor)

link|improve this question

38% accept rate
feedback

3 Answers

If I understood correctly try this

$('.expansion_button').one('click', function(){
   alert('Next click will not alert!');
});  

Here is the working demo of above code

link|improve this answer
feedback

If you want the live handler to execute only once per matched element, do something like this:

$('.expansion_button').live('click', function(e){

    if( $.data( this, "liveclicked" ) ) {
    return true;
    }

$.data( this, "liveclicked", true );
return expansion.apply( this, arguments );
});
link|improve this answer
feedback

Jquery .die() kills the handler that you had attached to that element. In order to bind it you just use live as you did:

 $('.expansion_button').live('click', expansion);

Then somewhere in that function if you want to remove the bound event you then call .die(), so something like:

$("unbind-element").click(function () { 
  $(expansion_button).die(); 
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.