Link to home
Start Free TrialLog in
Avatar of cbrune
cbrune

asked on

ajax call how do i get an object inside the object that is returned in the success function???

if the object that is returned has a object that is a member of that object how do i pull out their members in the success function??

object1
{
   public object2 obj;

}

success(object1){
how do i get object 1 members?

}
Avatar of Eyal
Eyal
Flag of Israel image

object1.object2
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cbrune
cbrune

ASKER

u mean obj2 members??