SyntaxFix
Write A Post
Hire A Developer
Questions
Could you not just do this:
var codeToExecute = "My.Namespace.functionName()"; var tmpFunc = new Function(codeToExecute); tmpFunc();
You can also execute any other JavaScript using this method.