I have an jquery element and I attach a function to it
element.on('click', function(){
// do stuff
});
If I want to find the function that does the //do stuff
, where inside the element would I find it, in order to execute it manually if needed. (element[???]();
->
//does stuff
)