I have the following code
$(\".reply\").toggle
(
function ()
{
x1();
},
function ()
{
x2();
}
);
I
live supports custom events in jquery 1.4. You could try something like this:
$(function () {
$(".reply").live("customToggle", function () {
$(this).toggle(
function () {
x1();
},
function () {
x2();
}
);
});
$(".reply").live('click', function () {
$(this).trigger('customToggle');
});
});
this appears to work fine without a custom event:
$(".reply").live('click', function () {
$(this).toggle(
function () {
x1();
},
function () {
x2();
}
);
$(this).trigger('click');
});
Just modified fehay's answer so that it does not rely on jQuery not attaching duplicate event handlers during toggle()
$(".reply").live('click', function () {
var toggled = $(this).data('toggled');
$(this).data('toggled', !toggled);
if (!toggled) {
x1();
}
else {
x2();
}
});
Besides, just keep in mind that the selectors for live
have to be as specific as possible because of the way event delegation works. Every time something gets clicked on the document, jQuery has to climb up the tree checking if the element matches the selector.For the same reason, .delegate()
is much more performant because you can limit the capture area.