Calling a Javascript Function from Console

JavascriptFunctionGoogle Chrome-DevtoolsDeveloper Tools

Javascript Problem Overview


In Chrome's JavaScript console, how do I call a function that belongs to a .js file included in the webpage I am viewing?

Javascript Solutions


Solution 1 - Javascript

If it's inside a closure, i'm pretty sure you can't.

Otherwise you just do functionName(); and hit return.

Solution 2 - Javascript

An example of where the console will return ReferenceError is putting a function inside a JQuery document ready function

//this will fail
$(document).ready(function () {
    myFunction(alert('doing something!'));
    //other stuff
})

To succeed move the function outside the document ready function

//this will work
myFunction(alert('doing something!'));
$(document).ready(function () {          
    //other stuff
})

Then in the console window, type the function name with the '()' to execute the function

myFunction()

Also of use is being able to print out the function body to remind yourself what the function does. Do this by leaving off the '()' from the function name

function myFunction(alert('doing something!'))

Of course if you need the function to be registered after the document is loaded then you couldn't do this. But you might be able to work around that.

Solution 3 - Javascript

This is an older thread, but I just searched and found it. I am new to using Web Developer Tools: primarily Firefox Developer Tools (Firefox v.51), but also Chrome DevTools (Chrome v.56)].

I wasn't able to run functions from the Developer Tools console, but I then found this

https://developer.mozilla.org/en-US/docs/Tools/Scratchpad

and I was able to add code to the Scratchpad, highlight and run a function, outputted to console per the attched screenshot.

I also added the Chrome "Scratch JS" extension: it looks like it provides the same functionality as the Scratchpad in Firefox Developer Tools (screenshot below).

https://chrome.google.com/webstore/detail/scratch-js/alploljligeomonipppgaahpkenfnfkn

Image 1 (Firefox): http://imgur.com/a/ofkOp

enter image description here

Image 2 (Chrome): http://imgur.com/a/dLnRX

enter image description here

Solution 4 - Javascript

You can invoke it using

window.function_name()

or directly without window like

function_name()

Solution 5 - Javascript

Basically, there are two cases here:

  1. Your function is in global scope. In that case, simply open a console and call it yourFunction()
  2. Your function is scoped inside some other function(s) and is not accessed globally. In that case, you can open a Sources tab, locate your .js file, place a breakpoint anywhere at the bottom of the outer function (you might need to refresh a page after that if the code have already been run) and call yourFunction() in console. Also, while at breakpoint you may do something like window.yourFuncRef = yourFunction in console, to be able to access it later at any time.

Solution 6 - Javascript

I just discovered this issue. I was able to get around it by using indirection. In each module define a function, lets call it indirect:

function indirect(js) { return eval(js); }

With that function in each module, you can then execute any code in the context of it.

E.g. if you had this import in your module:

import { imported_fn } from "./import.js";

You could then get the results of calling imported_fn from the console by doing this:

indirect("imported_fn()");

Using eval was my first thought, but it doesn't work. My hypothesis is that calling eval from the console remains in the context of console, and we need to execute in the context of the module.

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
QuestionL3v3LView Question on Stackoverflow
Solution 1 - JavascriptKevin EnnisView Answer on Stackoverflow
Solution 2 - JavascriptTony DeaconView Answer on Stackoverflow
Solution 3 - JavascriptVictoria StuartView Answer on Stackoverflow
Solution 4 - JavascriptnareshView Answer on Stackoverflow
Solution 5 - JavascriptAlex.MeView Answer on Stackoverflow
Solution 6 - JavascriptAdrianView Answer on Stackoverflow