There must be something wrong. I don't know what? see this on jsfiddle. I have selected jquery 1.7.2. and live is working fine but on does not attach click event. as per jquery documentation, on should be working as live has been deprecated. Any idea? thanks
|
|
|||
| show 4 more comments |
|
You're not binding the
jsFiddle: http://jsfiddle.net/h75BD/2/ Binding it using the |
|||||||
|
|
In your example, But remember,
|
|||||
|
|
"on" doesn't work quite like that. You call "on" on a parent element that will have the children elements dynamically attach to it. In this case, it would be body.
|
|||
|
|
|
You need to delegate for dynamically created elements. So you should use something like this.
This way the event bubbles up the the parent element and is handled there since |
||||
|
|
|
On attaches event to descendant of element being selected. You are attaching on to p that does not have descendant and newly added paragraph p is inserted after the p tag to whom you added on handler so it does not come under it (Newly added p is not descendant of p to whom you attached click with On. To explain what I mean put existing p in div and newly added p will be descendant of the parent div and on will be attached to every newly added p which is descendant of div with id div1. Selector which is second argument is to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element Reference
Or you can put it on document to attach click on every element p added to document.
|
||||
|
|


liveeven though it's deprecated because it is easier to use thanon. :) – Nathan Jul 3 '12 at 5:02