Possible Duplicate:
Access parent's parent from javascript object
Im a bit confused how to say this but i want what i would expect from the code "this.this.".
In the array
Foo =
{
bar :
{
Tool : function()
{
return this.this.foofoo;
},
},
foofoo : "rawr"
}
From the function Foo.bar.Tool() how can i get it to access the data foofoo ?
Thankyou !