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

This function is built into the page and I cannot modify the original .js file:

cool.lol = function () {

    // contents here

}

Is there a way for me to append this function with some of my own scripts?

Like this:

cool.lol = function () {

    // contents here

    // i would like to add my own stuff here!!!
}

Or is there a way for me to detect that the function has been executed so I can run something after it?

share|improve this question
forum.jquery.com/topic/… – Tats_innit May 25 '12 at 2:41

5 Answers

up vote 10 down vote accepted

Here's a demo of the following. Updated to use a closure and remove the need for a temporary variable.

//your cool with lol
var cool = {
    lol: function() {
        alert('lol');
    }
}

//let's have a closure that carries the original cool.lol
//and returns our new function with additional stuff

cool.lol = (function(temp) { //cool.lol is now the local temp
    return function(){       //return our new function carrying the old cool.lol
        temp.call(cool);     //execute the old cool.lol
        alert('bar');        //additional stuff
    }
}(cool.lol));                //pass in our original cool.lol

cool.lol();
cool.lol();​
share|improve this answer
Or do it like this: instead of temp, use _lol. – Derek 朕會功夫 May 25 '12 at 2:45
2  
Nice touch with the anonymous function. The only caveat here, obviously, is that you cannot access variables within cool.lol's original namespace. – cheeken May 25 '12 at 2:52
@cheeken hmm, nice spot. i'll try testing other ways. having a temp variable lying around is not good, especially when it's accidentally nulled. – Joseph the Dreamer May 25 '12 at 2:55
1  
@JosephtheDreamer - Why don't you use .call() to refer back this? – Derek 朕會功夫 May 25 '12 at 2:56
1  
@Derek thanks for the tip :) – Joseph the Dreamer May 25 '12 at 3:05
show 1 more comment

http://jsfiddle.net/Pcxn5/1/

// original definition which you can't touch
var cool = {
    lol: function() {
        alert("test");
    }
}
//

// your script
var ori = cool.lol;
cool.lol = function() {
    ori();
    alert('my test');
}

cool.lol();​
share|improve this answer
2  
downvoter: comment..? anything? – SiGanteng May 25 '12 at 2:45
Three answers are the same... Anyway, I upvoted you. – Derek 朕會功夫 May 25 '12 at 2:46
If same answer was indeed the reason then why is it that even though mine was the second, the third didn't get downvoted (sigh) :( sorry ranting a bit there... Thanks anyway @Derek :) – SiGanteng May 25 '12 at 2:48
@NiftyDude some people just hit and run with downvotes for no reason. Anyways, I upvote in response to that downvote. – Joseph the Dreamer May 25 '12 at 3:01
@JosephtheDreamer thanks a lot :) – SiGanteng May 25 '12 at 3:04

You can override the function:

// The file you can't touch has something like this
var cool = {};
cool.lol = function () {
    console.log("original");
}

// Keep a copy of the original function.
// Override the original and execute the copy inside
var original = cool.lol;
cool.lol = function () {
    original();
    console.log("modified");
}

// Call
cool.lol();​ // logs "original", then "modified".

http://jsfiddle.net/K8SLH/

share|improve this answer

Without creating variables polluting the public scope:

 //let's have your cool namespace
var cool = {
    lol: function() {
        alert('lol');
    }
}

//temporarily store
cool.lol_original = cool.lol;

//overwrite
cool.lol = function() {
    this.lol_original(); //call the original function
    alert('bar');    //do some additional stuff
}

cool.lol();​
share|improve this answer
Try @Joseph the Dreamer 's answer, it is definitely better. – Derek 朕會功夫 May 25 '12 at 3:01

JavaScript allows you to

  • get the code of the functions as a string
  • create new functions by supplying a string with code

Every object has a toString() method. For functions, it returns their code (unless overriden).

cool.lol.toString();

returns function() { // contents here }.

Let us extract the body of the function from this string. It starts immediately after { and includes everything except the last }.

var code = cool.lol.toString();
var body = code.substring(code.indexOf('{') + 1, code.length - 1);

Then we add more stuff

var newBody = body + '// i would like to add my own stuff here!!!';

and create a new function using the Function constructor.

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function

cool.lol = new Function(newBody);

Of course, there is more work to do if the new function also has to retain arguments (you have to parse them out from the function code, then give them as parameters to the Function constructor). For simplicity, in this case I assumed there are no arguments to the function.

An example implementation:

http://jsfiddle.net/QA9Zx/

share|improve this answer
1  
It's better to avoid using the Function constructor. It's eval's twin. – Joseph the Dreamer May 25 '12 at 3:02
2  
@JosephtheDreamer Yes, I understand the string passed to Function must be eval-ed. And in practice, I would not use this approach. However, my solution is the only one that actually inserted a script into an existing function in the strict sense :-p I am just proposing this as an alternative solution to wrapping the function by another, as suggested by other respondents. – Imp May 25 '12 at 3:05
fair enough. the more solutions, the better :) – Joseph the Dreamer May 25 '12 at 3:06
@Imp if you wouldn't actually to it that way, I'd at least mention that, and the reasons why, in your answer. While this is an interesting trick, I would be sad to see it in production code anywhere. – jatrim May 25 '12 at 7:01

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.