Lets assume I have several <span class='remove-type'> elements on a page.
In jQuery document.ready even I am calling $('.remove-type').on('click', removeType);
removeType is a locally defined function.
For some reason, a removeType(data) is getting called and executed only on the first click of any .remove-type span. Consequent clicks don't fire up an function. Is this a correct behavior for jQuery .on event binding?
Additional info: I do remove the container of the item that generates the click event, but other remove-type spans are still there.
removeType()? – Eric Fortis Jun 13 '12 at 0:28.live, they claim .on replaces it, but with click events, it often doesn't..livetends to actually stay live so that new elements bearing that class will also receive the click event.$('.remove-type').live('click', removeType);– SpYk3HH Jun 13 '12 at 0:36liveyou must add it like this$(container).on('event', selector, function)... Typically like$(document).on('click', 'a.whatever', function(){});– lucuma Jun 13 '12 at 0:38