Skip to content

Instantly share code, notes, and snippets.

@NKid
Created January 18, 2013 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NKid/c56b693291100e29f3ff to your computer and use it in GitHub Desktop.
Save NKid/c56b693291100e29f3ff to your computer and use it in GitHub Desktop.
override alert
(function() {
var proxied = window.alert;
window.alert = function(n) {
n = n + ' (proxied)';
return proxied.apply(this, arguments);
};
})();
alert('hi');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment