The title is pretty self-explanatory..
Is there a way to read whatever's been output to the console.log up until the moment you decide to read it, using Javascript?
The title is pretty self-explanatory.. Is there a way to read whatever's been output to the console.log up until the moment you decide to read it, using Javascript? |
|||
You can make a proxy around it, such as :
|
|||||||||||||||||||||
|
console.log
to use an internal queue (and also write-through) - or perhaps look into browser/extension specific support (e.g. any Firebug hook?). – user2246674 Sep 19 '13 at 21:42