-1

I have a third-party plugin (igGrid) table on my page. I want to know what method is called when a specific button is clicked on this page. (The "Done" button when editing a row, if anyone is interested).

Essentially, how do I add a JavaScript break-point to a button? I'm using Chrome, and need to use Chrome.

EDIT: I know what Chrome Dev Tools are, there is just nowhere to add a breakpoint to.

Matthew Peel
  • 357
  • 4
  • 15

2 Answers2

1

You can use CTRL+SHIFT+J to open up the dev console in Chrome

Java_User
  • 1,303
  • 3
  • 27
  • 38
0

Use the Chrome console , CTRL+SHIFT+J and use the console.log() to debug

Azrael_404
  • 426
  • 1
  • 6
  • 17