For example:
(function() {
var proxied = window.eval;
window.eval = function() {
return proxied.apply(this, arguments);
};
})();
But this code is not working.
|
For example:
But this code is not working.
| |||||||||||||
feedback
|
|
You can't. (There is a limited way of doing it, but it's quite limited and doesn't maintain the magic that bobince talks about.)
The recent ECMAScript 5 specification specifically disallows overriding | |||||||||||||
feedback
|
|
Replace that It is, therefore, impossible to replace | |||
|
feedback
|
|
Not only should you not do this, but I also think you probably can't. First, eval is a global function, and as such is not a member of window (as you tried above). Secondly as a global function it is highly likely that it is hard-wired into the VM and can't be overwritten. | |||||||||
feedback
|
|
I tried this in FireFox 3.6.2 and it appears to work. I typed this directly in the FireBug command line:
| |||||||||
feedback
|