I have several <div class="some_class">
. I bind to it an event
to it through
$('.some_class').on('click',function() {...})
Now. When I change context and I creat dynamically new <div class="some_class">
the event is not binded enough. How I can solve this without repeating the binding in the context switch function
?