Is it possible to somehow set a name for anonymous functions?
There is no need to add function names to the namespace for anonymous functions but I would like to avo
An anonymous function is a function without a name, it is executed from where it is defined. Alternatively, you can define the debugging function before using it.
function debuggingName() { alert("x"); } $("object").bind("click", debuggingName);