Home > other >  is there a other way to start the console window in javascript?
is there a other way to start the console window in javascript?

Time:01-13

I need to open the console window in javascript. Pressing f12 will launch a program from Myasus. I would like to know if there is another way for starting the console?

I tried pressing F12 but this doesn't work.

CodePudding user response:

Other ways:

  • Ctrl Shift I (Cmd Option I on Mac OS) opens Dev Tools (on most browsers)
  • Ctrl Shift J (Cmd Option J on Mac OS) opens Dev Tools and goes to the Console panel (on most browsers)
  • Right-clicking the page and choosing Inspect (or similar)
  • Using the browser menu to open Dev Tools

Here's docs from Chrome and Firefox for this, but most browsers do similar things.

CodePudding user response:

Another way is to use browser developer tools, which can be accessed by right-clicking on a web page and selecting "Inspect" or "Inspect Element." This will open the developer tools, which include a console window.

  • Related