Abhijeet
Abhijeet

Reputation: 13856

Prevent Chrome Debugger to reload Page when resuming debugger

My Webpage contains following items -

While debugging, JS in chrome when I continue (F5) I expect the page to load and stay. But actually the page reloads. How do you prevent this situattion ?

Upvotes: 2

Views: 2426

Answers (2)

Andy McCluggage
Andy McCluggage

Reputation: 38688

Un-dock the Chrome Dev Tools Window so it is not embedded within the webpage, then always ensure the dev tools window has the focus before hitting F5. If the webpage window has the focus the F5 command will be interpreted as a refresh.

Upvotes: 3

MKS
MKS

Reputation: 352

Instead of using F5, use F8 to continue.

Upvotes: 5

Related Questions