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

I'm trying to access a nested function by passing the function name in as a string and then calling it. Eg, see this post

function outer(action){
    window["outer"][action]();

    function inner(){
        alert("hello");
    }
}
outer("inner");

However it doesn't work. Error:

window.outer[action] is not a function

How to make this work, or an alternative way of calling a nested function.

The reason for this is that I am trying to hide a bunch of functions that are called by an iframe inside a functions scope.

share|improve this question

2 Answers

up vote 5 down vote accepted
function outer(action){
   var inner = {
     func1: function() {},
     func2: function() {},  
     func3: function() {},
     // ...
   }
   inner[action]();
}

outer("func1");
share|improve this answer
1  
Thanks. Works a treat – SystemicPlural Nov 25 '10 at 14:30
glad i could help :) – galambalazs Nov 25 '10 at 21:06

In that way you are trying to access the "inner" property of the "outer" function (outer.inner) that is not defined. The only way to do that is by using eval:

function outer(action){
    eval(action+"()");

    function inner(){
        alert("hello");
    }
}
outer("inner");

But remember eval is evil is some situations so be careful.

share|improve this answer
eval. urgggh. galambalazs came up with a solution. – SystemicPlural Nov 25 '10 at 14:31
1  
You won't die if you use eval trust me:) – mck89 Nov 25 '10 at 14:33
1  
Yeah you won't die, Crockford won't kill you he'll just torture you till the end of time :P – Ivo Wetzel Nov 25 '10 at 14:36

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.