function A(){
this.B=_B;
}
function _B(){
this.C=_C;
}
function _C(){
alert("IN");
}
var a=new A();
a.B().C();
variable 'a' is an instance of class A().
Trying to call method _C() as below
a.B().C();
which is throwing error.
requirment is to call something like
Menu.Options(0).Hide();


Reply With Quote

Bookmarks