It is possible to expand an existing binding?
/* Existing */
$("#btn").on("click", function() {
console.log("exist");
});
/* Additional */
$("#btn").on("click", function() {
console.log("ADD");
});
On #btn
click it should log: exist
and ADD