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)
|
feedback
|
|
If I understood correctly try this
Here is the working demo of above code | |||
|
feedback
|
|
If you want the live handler to execute only once per matched element, do something like this:
| |||
|
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:
Then somewhere in that function if you want to remove the bound event you then call .die(), so something like:
| |||
|
feedback
|