I am creating various objects with my plugin, then I append more objects to them, and so when i do that i need to select those fresh objects.
I have made very simple jsfiddle here: http://jsfiddle.net/6zBGj/2/
And now as you can see I append item
div to the $container
and so when user clicks on item
i want to do something, but i can't find a way to select it.
Please keep in mind that this is a plugin, and i do not want to select it like this: $(".container .item")
I need to work with each individual object separately.
P.S don't mind messy code it's just an example.