Skip to content

Instantly share code, notes, and snippets.

@adover
Created February 19, 2019 19:17
Show Gist options
  • Save adover/019aeb6255e0cb2c68d9a0b37809c7dc to your computer and use it in GitHub Desktop.
Save adover/019aeb6255e0cb2c68d9a0b37809c7dc to your computer and use it in GitHub Desktop.
Finding pesky alerts
var old = alert;
alert = function() {
console.log(new Error().stack);
old.apply(window, arguments);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment