When I do console.log(info)
is it possible to later use JS to extract everything from the browsers console and add it to a var
? I would like to extract all contents of the console and send it to the server through AJAX
Basically I'm looking for something like:
var console_content = console.read();
Is there anything in JS or jQuery that will make this possible?