Reputation: 9645
Could someone suggest some tool or how to configure firebug to display a list of defined variables in separate window.
I want to see variables, when any variable changes it property, at what line of code it have been changes and so on.
Because code becomes pretty big and following all needed variables is pretty hard now.
Have someone seen some tool with such capabilities?
Maybe there is some IDE, that have such functionality?
So basically i need to monitor JavaScript variables at separate window.
Thanks ^_=
Upvotes: 1
Views: 157
Reputation: 93433
Open the Firebug pane or window.
Click on the "Script" tab.
On the right-hand pane, click on the "Watch" tab.
Click the "New watch expression...".
Type or paste in your variable name.
Enjoy!
Upvotes: 1