• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Javascript + Firebug

Replicon

Member
Hey,

I'm wondering if there's any way I can programmatically, using Javascript, retrieve Firebug data. Does firebug expose some kind of hooks so I can retrieve things like the javascript errors, or the request timing of the page load (the "Net" section)? I'm sure it would count as a security risk to expose everything, but it would be really cool if at least SOMETHING were exposed. I know there's a console object, which allows you to write to the error console, but I can't find anything beyond that...

cheers
 
There is a javascript console api for logging, but I can't find anything that hints at an api for retrieving information. Not sure why they would have one since you can display the console and get better access, and it doesn't make sense on the server side since it depends on the rendered DOM and javascript API on the client.
 
Back
Top