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

How can I hook up an event to a function name I have defined as a string?

I'm using Prototype.js, although this is not Prototype-speficic.

$(inputId).observe('click', formData.fields[x].onclick);

This would result in JavaScript complaining that my handler is not a function. I would prefer not us use eval().

share|improve this question

8 Answers

up vote 37 down vote accepted

If the function is in the global scope, you can get it using the window object:

var myFunc = window[myFuncName];
share|improve this answer
6  
...or scope[myFuncName] in general – annakata Jan 30 '09 at 20:02
Yup, as long as you have a handle to the scope somewhere, this'll work – Greg Jan 30 '09 at 20:06
This saved my life. Thanks a million time. – Alex Nov 30 '12 at 13:09

I have worked on this problem, as I needed a function like this. Here is my sandbox code, not thoroughly tested, but can be a startpoint for others. Note that there is one eval() in the code as I couldn't figure out how to bypass that step, maybe a javascript quirk and cannot be done in any other way. Let me know if there is a way to get rid of eval() here!

executeFunctionByName = function(functionName)
{
    var args = Array.prototype.slice.call(arguments).splice(1);
    //debug
    console.log('args:', args);

    var namespaces = functionName.split(".");
    //debug
    console.log('namespaces:', namespaces);

    var func = namespaces.pop();
    //debug
    console.log('func:', func);

    ns = namespaces.join('.');
    //debug
    console.log('namespace:', ns);

    if(ns == '')
    {
        ns = 'window';
    }

    ns = eval(ns);
    //debug
    console.log('evaled namespace:', ns);

    return ns[func].apply(ns, args);
}


core = {
    paragraph: {
        titlebar: {
            user: "ddd",
            getUser: function(name)
            {
                this.user = name;
                return this.user;
            }
        }
    }
}

var testf = function()
{
    alert('dkdkdkd');
}

var x = executeFunctionByName('core.paragraph.titlebar.getUser', 'Ikon');
executeFunctionByName('testf');
share|improve this answer
To get rid of the eval you could navigate the namespaces from the window object: var func = window; for(var i=0;i<namespaces.length;++i){ func = func[namespaces[i]]; } – Cristian Vrabie Aug 13 '12 at 12:44

... or this[myFuncName];

share|improve this answer

Looks like formData.fields[x].onclick holds the name of a global function? If so try:

$(inputId).observe('click', window[formData.fields[x].onclick]);
share|improve this answer
window.myFunction === window["myFunction"]
share|improve this answer

Perhaps?

setTimeout ( "myFunc()", 1 );
share|improve this answer

Do you know what the onclick property contains or what type it is? I assume this is prototype specific stuff, as "fields" does not exist in DOM forms.

share|improve this answer

Just an eval would do the job

var call = eval("mathod_name") call(args)

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.