vote up 0 vote down star

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().

flag

5 Answers

vote up 4 vote down check

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

var myFunc = window[myFuncName];
link|flag
...or scope[myFuncName] in general – annakata Jan 30 at 20:02
Yup, as long as you have a handle to the scope somewhere, this'll work – Greg Jan 30 at 20:06
vote up 2 vote down

... or this[myFuncName];

link|flag
vote up 2 vote down

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

$(inputId).observe('click', window[formData.fields[x].onclick]);
link|flag
vote up 0 vote down

window.myFunction === window["myFunction"]

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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