Skip to content

Instantly share code, notes, and snippets.

@DawnPaladin
Created December 17, 2014 20:07
Show Gist options
  • Save DawnPaladin/d6a47fe49611b6388123 to your computer and use it in GitHub Desktop.
Save DawnPaladin/d6a47fe49611b6388123 to your computer and use it in GitHub Desktop.
When the browser would fire an alert() window, it begins debugging instead, allowing you to step through the code.
window.alert = function(msg) { debugger; } ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment