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 have this code that use live method, and it works in Opera and Chrome:

 $(".dynamicaly_created_div").live("click",function(){
    $(event.target).parent().remove();
 });

But not in the FF. So i tried to replace "live" with "on" (i read somwhere that live is deprecated). But then, this does not work in any browser.

Is ther any solution for this?

share|improve this question
Which version of jQuery are you are using? A little important. – Diodeus Jul 25 '12 at 14:30
Latest, v 1.7.2 – SomeoneS Jul 25 '12 at 14:37

1 Answer

up vote 6 down vote accepted

Have you tried passing the event into the function?

$(".dynamicaly_created_div").live("click",function(e){
    $(e.target).parent().remove();
});
share|improve this answer
Yes, this works, tnx a lot :) And, yes, i tried something like this, but i did not used it correctly, so it did not worked. – SomeoneS Jul 25 '12 at 14:36

Your Answer

 
discard

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

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