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 Link to comment https://forums.phpfreaks.com/topic/207054-functions-through-the-window-object/ 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 Link to comment https://forums.phpfreaks.com/topic/207054-functions-through-the-window-object/#findComment-1084516 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.