Use breakpoints to pause your JavaScript code. This guide explains each type of breakpoint that's available in DevTools, as well as when to use and how to set each type. For a hands-on tutorial of the debugging process, see Get Started with Debugging JavaScript in Chrome DevTools.
Overview of when to use each breakpoint type
The most well-known type of breakpoint is line-of-code. But line-of-code breakpoints can be inefficient to set, especially if you don't know exactly where to look, or if you are working with a large codebase. You can save yourself time when debugging by knowing how and when to use the other types of breakpoints.
Breakpoint Type | Use This When You Want To Pause... |
---|---|
Line-of-code | On an exact region of code. |
Conditional line-of-code | On an exact region of code, but only when some other condition is true. |
DOM | On the code that changes or removes a specific DOM node, or its children. |
XHR | When an XHR URL contains a string pattern. |
Event listener |
On the code that runs after an event, such as
click , is fired.
|
Exception | On the line of code that is throwing a caught or uncaught exception. |
Function | Whenever a specific function is called. |
Line-of-code breakpoints
Use a line-of-code breakpoint when you know the exact region of code that you need to investigate. DevTools always pauses before this line of code is executed.
To set a line-of-code breakpoint in DevTools:
- Click the Sources tab.
- Open the file containing the line of code you want to break on.
- Go the line of code.
- To the left of the line of code is the line number column. Click on it. A blue icon appears on top of the line number column.

Line-of-code breakpoints in your code
Call debugger
from your code to pause on that line. This is equivalent to
a line-of-code breakpoint, except that the breakpoint is set in your
code, not in the DevTools UI.
console.log('a');
console.log('b');
debugger;
console.log('c');
Conditional line-of-code breakpoints
Use a conditional line-of-code breakpoint when you know the exact region of code that you need to investigate, but you want to pause only when some other condition is true.
To set a conditional line-of-code breakpoint:
- Click the Sources tab.
- Open the file containing the line of code you want to break on.
- Go the line of code.
- To the left of the line of code is the line number column. Right-click it.
- Select Add conditional breakpoint. A dialog displays underneath the line of code.
- Enter your condition in the dialog.
- Press Enter to activate the breakpoint. An orange icon appears on top of the line number column.

Manage line-of-code breakpoints
Use the Breakpoints pane to disable or remove line-of-code breakpoints from a single location.

get-started.js
, another on
line 32
- Check the checkbox next to an entry to disable that breakpoint.
- Right-click an entry to remove that breakpoint.
- Right-click anywhere in the Breakpoints pane to deactivate all breakpoints, disable all breakpoints, or remove all breakpoints. Disabling all breakpoints is equivalent to unchecking each one. Deactivating all breakpoints instructs DevTools to ignore all line-of-code breakpoints, but to also maintain preserve their enabled state so that they are in the same state as before when you reactivate them.

DOM change breakpoints
Use a DOM change breakpoint when you want to pause on the code that changes a DOM node or its children.
To set a DOM change breakpoint:
- Click the Elements tab.
- Go the element that you want to set the breakpoint on.
- Right-click the element.
- Hover over Break on then select Subtree modifications, Attribute modifications, or Node removal.

Types of DOM change breakpoints
Subtree modifications. Triggered when a child of the currently-selected node is removed or added, or the contents of a child are changed. Not triggered on child node attribute changes, or on any changes to the currently-selected node.
Attributes modifications: Triggered when an attribute is added or removed on the currently-selected node, or when an attribute value changes.
Node Removal: Triggered when the currently-selected node is removed.
XHR/Fetch breakpoints
Use an XHR breakpoint when you want to break when the request URL of an XHR
contains a specified string. DevTools pauses on the line of code where the
XHR calls send()
.
One example of when this is helpful is when you see that your page is requesting an incorrect URL, and you want to quickly find the AJAX or Fetch source code that is causing the incorrect request.
To set an XHR breakpoint:
- Click the Sources tab.
- Expand the XHR Breakpoints pane.
- Click Add breakpoint.
- Enter the string which you want to break on. DevTools pauses when this string is present anywhere in an XHR's request URL.
- Press Enter to confirm.

org
in the URL
Event listener breakpoints
Use event listener breakpoints when you want to pause on the event listener
code that runs after an event is fired. You can select specific events, such
as click
, or categories of events, such as all mouse events.
- Click the Sources tab.
- Expand the Event Listener Breakpoints pane. DevTools shows a list of event categories, such as Animation.
- Check one of these categories to pause whenever any event from that category is fired, or expand the category and check a specific event.

deviceorientation
Exception breakpoints
Use exception breakpoints when you want to pause on the line of code that's throwing a caught or uncaught exception.
- Click the Sources tab.
Click Pause on exceptions
. It turns blue when enabled.
Figure 8: The Pause on exceptions button
(Optional) Check the Pause On Caught Exceptions checkbox if you also want to pause on caught exceptions, in addition to uncaught ones.

Function breakpoints
Call debug(functionName)
, where functionName
is the function you want to
debug, when you want to pause whenever a specific function is called. You can
insert debug()
into your code (like a console.log()
statement) or call it
from the DevTools Console. debug()
is equivalent to setting a
line-of-code breakpoint on the first line of the function.
function sum(a, b) {
let result = a + b; // DevTools pauses on this line.
return result;
}
debug(sum); // Pass the function object, not a string.
sum();
Make sure the target function is in scope
DevTools throws a ReferenceError
if the function you want to debug is not
in scope.
(function () {
function hey() {
console.log('hey');
}
function yo() {
console.log('yo');
}
debug(yo); // This works.
yo();
})();
debug(hey); // This doesn't work. hey() is out of scope.
Ensuring the target function is in scope can be tricky if you're
calling debug()
from the DevTools Console. Here's one strategy:
- Set a line-of-code breakpoint somewhere where the function is in scope.
- Trigger the breakpoint.
- Call
debug()
in the DevTools Console while the code is still paused on your line-of-code breakpoint.