We are currently reporting all JavaScript errors. However, some errors seem to be related to the browser (plugin, etc.). Like this:
Error: Error calling method in NPObject!Line: 0Script: http://www.lookr.com/lookout/1329030315-Giglio-Porto
Error: Error calling method in NPObject!
Line: 0
Script: http://www.lookr.com/lookout/1329030315-Giglio-Porto
How can I ignore those internal errors that are not directly related to the website?
line 0
Thank you in advance for your suggestions.
This is the closest you can get ( onerror )
<html> <body> <script> window.onerror = function(e) { alert('Error'); console.log(e); } show('Error'); // show is not defined </script> </body> </html>