Howdy,
I'm trying to find some way to see what JavaScript sees on a real-time basis; what it sees as the values of variables at any given time, etc. Is there something like that that I can download and use- a browser add-on, perhaps?
Thanks,
Matt
Real-time Javascript information
Moderator: General Moderators
Re: Real-time Javascript information
Any javascript debugger would allow you to pause js execution and inspect the variables (reachable from current scope). Or were asking for something different?
Re: Real-time Javascript information
Ok, I guess I've had Firebug but I didn't realize it did real-time stuff cause I haven't used it much. I'll look into it. Thanks.