I wonder how can I bind several handler functions to same event on a element, for example:
$("#this_element").on("click.action1", function(){
/* first thing to run when click this element */
}).on("click.action2", function(){
/* second thing to run when click this element */
}).on("click.action3", function(){
/* last thing to run when click this element */
})