Skip to content

Instantly share code, notes, and snippets.

@jasdeepkhalsa
Created December 25, 2012 23:44
Show Gist options
  • Save jasdeepkhalsa/4376467 to your computer and use it in GitHub Desktop.
Save jasdeepkhalsa/4376467 to your computer and use it in GitHub Desktop.
Error Logging (except Syntax Errors) for JavaScript Applications. Uses JQuery.
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