I am appending a <li> and when I try to click it using the new .on event, it doesn't work. I don't want to use the .live event since it might be going to be deprecated in the future.
Here is my example: http://jsfiddle.net/2Lbbe/
This works for the first item, if you create a new the alert doesn't work.
Anyone know how can I solve this problem without using live?
.on()was introduced in jQuery 0.7, but it doesn't replace anything. If you want to look, here are the only deprecated functions: api.jquery.com/category/deprecated – Blender Nov 9 '11 at 23:03.live()- it's deprecated as of version 1.7. Meanwhile.delegate()is "superseded" and.bind()is no longer "preferred". As of version 1.7 they recommend using.on()instead of all three. – nnnnnn Nov 9 '11 at 23:04