How do I find out what javascript function is being called by an object's onclick event?

Javascript

Javascript Problem Overview


How do I find out what javascript function is being called by an object's onclick event? Even better, can I then find out which included .js file that function is in?

Javascript Solutions


Solution 1 - Javascript

I use Chrome's Developer Tools for this:

Event Listener Breakpoints in Google Chrome's developer tools

Check the click box, and then click on the element on the page you want to find the handler for. If you are using jQuery (or similar library), you may have to step through their code before you get to yours.

Solution 2 - Javascript

You can do like this

With Javascript Demo on JsFiddle

div1 = document.getElementById('div1');

alert(div1.getAttribute("onclick"));​

With jQuery Demo on JsFiddle

<div id="div1" onclick="myfun();" >​

alert($('#div1').attr('onclick'))​;

Solution 3 - Javascript

I do this using this Visual Event script which neatly highlights which events are subscribed by which functions on which elements.

To find the souce of the code, simply use FireBug or similar browser developer tools to search the function name.

Solution 4 - Javascript

You wouldn't be able to find out the file the onclick event is called from but myObject.onclick will give you the function that's being called. And no, you don't need jQuery for this.

As far as getting the name of the function, that's a little more complicated. You could try something like this, perhaps:

var myFunc = myObject.onclick, myFuncName = "";

for(prop in window) {
    if(window.hasOwnProperty(prop) && window[prop] === myFunc) {
        myFuncName = prop; // myFuncName is now the name of the function. This only works if you didn't assign an anonymous function to the click handler.
        break;
    }
}

But honestly, I think that's a little overkill.

Solution 5 - Javascript

That depends on how the event is attached.

If you're binding to onclick without something like jQuery you could do this:

var obj = document.getElementById('elementId');
console.log(obj.onclick);

Solution 6 - Javascript

I have a different approach. I overload onclick function and add my debugger before the real function.

This is the element

<div id="div1">​

Write this JavaScript to developer console

var clickFn = $("#div1").click; 

$("#div1").click(function(){ 
    debugger; 
    clickFn(); 
});

Solution 7 - Javascript

Use the Chrome's Developer Tools (as suggested by benekastah), but then go on:

  • Event Listeners -> click.

Here you will find the list of js files running on your page on click events.

Compared to the solution given by benekastah, in this case, you can immediately see the list, without spending several time in debugging.

Google chrome screenshot

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCyrcleView Question on Stackoverflow
Solution 1 - JavascriptbenekastahView Answer on Stackoverflow
Solution 2 - JavascriptAdilView Answer on Stackoverflow
Solution 3 - JavascriptWidorView Answer on Stackoverflow
Solution 4 - JavascriptElliot BonnevilleView Answer on Stackoverflow
Solution 5 - JavascriptGabeView Answer on Stackoverflow
Solution 6 - JavascriptAlper EbicogluView Answer on Stackoverflow
Solution 7 - JavascriptriscaldoView Answer on Stackoverflow