Tricks
- In the console, select an element and type:
jQuery._data($0,"events")
- Load events before documents ready
});
Namespace
$('element_filter').on('focus.namespace blur.namespace'), function (event){
})
$('element_filter').off('namespace');
Just-in-time inizialization
$('document').on('focus', "input.date:not(.hasDatePicker)" , function(e){
$(this).initialize_function();
})
Comentarios
Publicar un comentario