I need handle events for static created and dynamic created elements. solution for static created elements is:
$(".js-tag-close").on("click", function ()
{
$(this).parent().remove();
});
for dynamic created:
$(".custom-tags-selector").on("click", ".js-tag-close", function ()
{
$(this).parent().remove();
});
How can I handle both case in one on() ?
Thanks in advance...
onwill do the same as the first so you can remove the first – ManseUK Feb 22 '12 at 13:38