jug Posted July 7, 2010 Share Posted July 7, 2010 Hi, Basically what Im trying to do is pass a function name as a string to a function where the code checks it existence before calling the function with parameters. Below is a very simplified version of the code that will hopefully show what Im trying to achieve. It is not working code yet but you can get the gist. function process(){ check('function1'); } function check(functionName){ var output = 'test'; if(!(window[functionName])){ alert('no'); }else{ window[functionName](output); } } function function1(output){ alert(output); } Any response will be much appreciated Thanks in advance jug Quote Link to comment Share on other sites More sharing options...
jug Posted July 11, 2010 Author Share Posted July 11, 2010 I know people dislike bumping but has no one got any idea. Any response would be appreciated. Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.