[jQuery] How do I access the function handlers of an event.
$('#myid').click() will trigger the click event;
and
$('myid').click(function(){alert('clicked');}); will bind that
function to the click event
but how do I return the function that would be called when $('#myid')
is clicked? (note: return, not call)
Thank you,