Hitting Cmd + Shift + C (Inspect Element) and pressing a button shows this: 
Clicking on Object {click= } events shows this (after expanding some information)

And clicking on function() shows this:

What should be the code you are looking for, right?
As a side note, Firebug cannot always find the exact line of code from which something came from. This method did not work for me completely! Another approach is to use the named functional expressions. Change code to:
$('#bigButton').click(function showMyLlama(){ $('img#theLlama').show(); })
Now it shows when checking the events object:

This is more useful than just function() , since it is now obvious that this handler shows us the llama. You can also find the code for the function name and find it!
Using Chrome , its built-in web inspector and this fiddle :
Hitting Cmd + Shift + C (Inspect Element) and clicking on the button shows this:

After clicking the button in the item inspector, press "Escape" to open the JS console: 
In the Chrome console, $0 refers to the selected item in the toolbox.
Entering $._data( $0 ) will give us a jQuery data object (internal), which includes events, as, for example, in our Firebug example, unfortunately, Chrome will not allow us to click on a function, but it will allow us to see the source:
<Broken Screenshot link>
Note on .live() events:
Live Events are stored on $._data( document, "events" ) and contain an origHandler that points to a function:
<Broken Screenshot link>
gnarf Oct 27 2018-10-27 20:49
source share