function hello(event) {
console.log("Hello, ", event.target);
}
$("#example1").on("click", hello);
$("#example2").on("click hover", hello);
$("#example3").on("mouseenter mouseleave", hello);
$(document).on("click", "div", function (event) {
$(event.target).draggable();
});