Skip to content

Instantly share code, notes, and snippets.

@mocheng
Created June 22, 2011 11:25
Show Gist options
  • Save mocheng/1039908 to your computer and use it in GitHub Desktop.
Save mocheng/1039908 to your computer and use it in GitHub Desktop.
override object method and recover it.
var foo = obj.foo;
obj.foo = function() {
// do something
obj.foo = foo;
obj.foo(arguments);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment