Created
December 25, 2012 23:44
-
-
Save jasdeepkhalsa/4376467 to your computer and use it in GitHub Desktop.
Error Logging (except Syntax Errors) for JavaScript Applications. Uses JQuery.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onerror = function(m,u,l){ | |
jQuery.post("ajax/js_error_log.php", | |
{ msg: m, | |
url: u, | |
line: l, | |
window: window.location.href }); | |
return true}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment