I first create a breakpoint into one line of JavaScript(inside the JavaScript class). Then I step by step go to next function call F11. With the developer tools, I reach to the following code.
var p = this.rotator.playing;
In this condition I know the variable inside class and the class name But I want to know now I am calling which object for that class. Any suggestion?
Actually I want to modify the variable p from outside of the JavaScript class.

this.rotator.playingfrom console(of chrome developer tools) just at that breakpoint. And so we can modify the value ofthis.rotator.playingat that point as well. But I can't modify from outside as I don't know which now which object is now in action. – vusan Sep 13 '12 at 6:39