Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am trying to run a live click function in jQuery and found that's not work like

$(function () {
    $("#elem #check").click(function () {
        alert('goaa');
    });
    $("#elem #check").live("click", function () {
        alert('fo');
    });

});

the page load and nothing come from ajax.when i trying to run that i found that [click] first is work and second not [live click].

what is the reason of click are work and live not worked.:-

Well it is my fault that i am trying to run it on jQuery UI tab so that's not worked.

share|improve this question
Just a note, you don't need to bind 2 click handlers if you want the same behavior in each -- just the live() is fine: $("#elem #check").live("click", function () {}); – ash Feb 6 '11 at 13:47

1 Answer

No idea what the problem is. As you can see in the following live demonstration this code works perfectly fine.

share|improve this answer
sorry for posting i am trying on jQuery UI based tab. – Steven Spielberg Feb 6 '11 at 13:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.