Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

(The answer to this, if there is one, is probably out there already, but I lack the proper terminology.)

I have a function, a(), that I want to override, but also have the original a() be performed in an order depending on the context. For example, sometimes when I'm generating a page I'll want to override like this:

function a()
{
  new_code();
  original_a();
}

and sometimes like this:

function a()
{
  original_a();
  other_new_code();
}

How do I get that original_a() from within the over-riding a()? Is it even possible?

(Please don't suggest alternatives to over-riding in this way, I know of many. I'm asking about this way specifically.)

share|improve this question

6 Answers

up vote 93 down vote accepted

You could do something like this:

var a = (function() {
    var original_a = a;

    if (condition) {
        return function() {
            new_code();
            original_a();
        }
    }
    else {
        return function() {
            original_a();
            other_new_code();
        }
    }
})();

Declaring original_a inside an anonymous function keeps it from cluttering the global namespace, but it's available in the inner functions.

Like Nermaster mentioned in the comments, be sure to include the () at the end. You want to call the outer function and store the result (one of the two inner functions) in a, not store the outer function itself in a.

share|improve this answer
Thanks! That's very helpful. – Kev Nov 17 '08 at 20:06
wow. ultra cool – naveen Mar 4 '11 at 3:54
7  
For any idiots out there like myself - pay close attention to the "()" at the end - without that, it returns the outer function, not the inner functions :) – Nerdmaster Jul 24 '12 at 18:27
@Nerdmaster Thanks for pointing that out. I added a note to hopefully help people notice. – Matthew Crumley Jul 24 '12 at 20:11
Wow, I tried to do this without a namespace and I got an stack overflow, lol. – gosu kiwi Aug 10 '12 at 17:00

Thanks guys the proxy pattern really helped.....Actually I wanted to call a global function foo.. In certain pages i need do to some checks. So I did the following.

//Saving the original func

var org_foo = window.foo;

//Assigning proxy fucnc

window.foo = function(args){

   //Performing checks

   if(checkCondition(args)){

     //Calling original funcs

     org_foo(args);
   }
};

Thnx this really helped me out

share|improve this answer

i think this link Proxy pattern from the jquery site might help you

share|improve this answer
1  
indeed. the usage of 'apply' and 'arguments' makes this far more robust than the other answers – Robert Levy May 21 '12 at 19:15
You have no idea how much I just learned from that link. Thank you sir – notbad.jpeg May 5 at 4:37

You can override a function using a construct like:

function override(f, g) { return function() { return g(f); } }

For example:

a = override(a, function(original_a) {

     if (condition) { new_code(); original_a(); }
     else { original_a(); other_new_code(); }
});
share|improve this answer
+1 This is so much more readable than the other proxy pattern examples! – Mu Mind May 26 '11 at 17:42
1  
...but if I'm not mistaken, this is limited to zero-argument functions, or some predetermined number of arguments at least. Is there some way to generalize it to arbitrary numbers of arguments without losing the readability? – Mu Mind May 26 '11 at 17:48

Passing arbitrary arguments:

a = override(a, function(original_a) {
    if (condition) { new_code(); original_a.apply(this, arguments) ; }
    else { original_a.apply(this, arguments); other_new_code(); }
});
share|improve this answer
wont arguments refer to original_a though? – Jonathan. Apr 6 at 9:42

The examples above do handle correctly apply 'this' or pass arguments correctly to the function override. Underscore _.wrap() wraps existing functions, applies this and passes arguments correctly. See: http://underscorejs.org/#wrap

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.