views:

118

answers:

1

Is it possible to capture the contents of either the Firefox or IE javascript error console? I'm thinking adding a feature where when a user clicks the 'Report A Bug' link on my site, it also sends along the contents of the console, incase there are any useful errors in it. That way I don't have to tell them to manually open it and copy & paste the contents to me.

+1  A: 

you can hook into the window.onerror event and send a request to your server with the details.

Just be aware that it won't work on all browsers, and the details of the error will vary by browser. e.g. IE may return the oh so helpful: "Object does not support property or method" and you're left wondering which object, what property?... ;-)

scunliffe
This looks good, here's a page I found with an example: http://www.javascriptkit.com/javatutors/error3.shtml
davr