I want to get the function which be defined in some event.
function clicked(){
console.log("clicked");
}
jQuery("button").click(clicked)
I need to get the "clicked" function name or even get the whole "clicked" function.
Is there any way to get the function which defined in some event?