DEV Community

Lucas
Lucas

Posted on • Updated on • Originally published at lucasjanon.com

My favorite front-end debugging hack

TL;DR, the trick is:

setTimeout(() => { debugger; }, 3000);
Enter fullscreen mode Exit fullscreen mode

I've been using that line of code for years.
I use it once in a while, but those times, it saves me from a big headache.

You may be asking yourself... really?
Can I delay a debugger statement?
Why would I even need to do that?
Why am I reading this post?

Chill, I have a gif to answer all your questions.
I'll bring a coffee website as our example since we all love coffee ☕️:

Debugging coffee tooltip

The best use case for our hack is whenever we need to change or check styles in DevTools and the element gets closed if we move the cursor or press any key.

With that line of code, we can just put the cursor whenever we need it and wait for the debugger to start by itself without doing anything.

I hope your next impossible-to-debug tooltip finds you ready with this great hack 🚀.

Let me know in the comments if you find another use case!

Top comments (21)

Collapse
 
wisniewski94 profile image
Wiktor Wiśniewski • Edited

Great! Works for css hovers too! This saves me a lot of clicking in DevTools :)

Collapse
 
lucasjanon profile image
Lucas

Awesome that it helped 🙌

Collapse
 
gtyrkicksin216 profile image
Ryan Wood

Is there a reason why you'd use this over the built in UI breakpoint additions in the inspector (break on: subtree modification, attribute modification, node removal)?

Collapse
 
tomsherman profile image
Tom Sherman

If you're using a framework like react then the UI breakpoints kinda don't work because all of the DOM updates are batched and scheduled.

Collapse
 
lucasjanon profile image
Lucas

That's definitely an option! Depending on the case it may not be as predictable as the hack, since sometimes nodes in the DOM are inserted before being displayed/styled.

Collapse
 
mohammadwali profile image
Mohammad Wali

For me, this is like -> open dev tools -> open sources panel -> hover over the navigation -> press f8 and it will pause there :)

Collapse
 
ben profile image
Ben Halpern

Neat

Collapse
 
cnotv profile image
cnotv

You can set in the DevTools a break on node change and other cases.
You just have to right click the inspected HTML element and it will behave like any other break.

Collapse
 
bastaware profile image
Christian Hessenbruch

👏👏👏

Collapse
 
djariss profile image
Davor Veselinovic

Nice approach and very nifty trick. :)

Collapse
 
mkherlakian profile image
Maurice Kherlakian

Awesome trick!

Collapse
 
lucasjanon profile image
Lucas

Thanks, my friend!

Collapse
 
htnguy profile image
Hieu Nguyen

awesome tip. Really shows how the debugger is underrated and should be used more 😄

Collapse
 
lucasjanon profile image
Lucas

Definitely! There are cases in which only the debugger can help you 😅

Collapse
 
carlosmori profile image
Carlos Mori

Nice bro!

Collapse
 
lucasjanon profile image
Lucas

Thanks my friend!

Some comments may only be visible to logged-in visitors. Sign in to view all comments.