Event binding on dynamically created elements Source: http://stackoverflow.com/questions/203198/event-binding-on-dynamically-created-elements
$(staticAncestors).on(eventName, elementBindEvent, function() {});
// example
jQuery('.miListaWrapper').on('click','.itemMiLista a', function(event) {
console.log('works')
});