Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
We will get the value of this.rotator.playing from console(of chrome developer tools) just at that breakpoint. And so we can modify the value of this.rotator.playing at 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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.