hi i have a var which takes a value based on a split, this value is nothing the but the name of a function to be called.
consider the code
Code:
var searchFn = "fnCallCal";
searchFn(name)
now the thing is the above will not work because it si a string so i need to know how to convert this from string to an function call.
thanks