Mega Code Archive

 
Categories / JavaScript Tutorial / Window
 

Get error file url

< html>     <head>         <title>OnError Example</title>         <script type="text/javascript">             window.onerror = function (sMessage, sUrl, sLine) {                 alert("An error occurred " + "\nURL: " + sUrl);                 return true;             }         </script>     </head>     <body onload="nonExistentFunction()">     </body> </html>