Reputation: 13856
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
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