I am being passed a string similar to below.
"Users_Controller.login"
“Users_Controller” represents the object below.
And “login” a method within it.
var Users_Controller = ( function () {
return{
login : function(vo, callback)
{......}
}
})();
Given only the string as a pointer,is it possible call the method?
You can use this function:
However, this does not allow bracket syntax.