> >> a. Where is the log of firebug kept ? > > > In a 'div' element in an HTML page called panel.html. > > Is there a way to access this log ? Get the console panel object using getPanel (member of Firebug's context object).
See http://www.softwareishard.com/blog/firebug-tutorial/extending-firebug-toolbar-part-ii/ how to get the context (e.g. onMyButton method). var panel = context.getPanel("console", true); As soon as you have the panel object you can get root dom element that represents its content. var root = panel.panelNode; Honza --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/firebug?hl=en -~----------~----~----~----~------~----~------~--~---
