3
I picked up a complex code for maintenance and noticed that a table is constantly updating causing page slowness.
I wonder if you have any browser options (Chrome preference), that allow me to stop the javascript execution and go to the current line that was running.
The point is I don’t know the line to be debugged. It has several JS files referenced and I suppose it has some script running with a setTimeout.
You can access the developer’s tools by simply pressing F12 on your keyboard. To stop it on the desired line, simply put a breakpoint on the line, as in any development IDE.
– Nikofoxxx
Use the @Eduardobinotto reply plus use the pause button when you want it to stop where it is running
– Erick Gallani
That’s right, if it complements the answer I mark as correct
– Joao Paulo