Skip to content

Instantly share code, notes, and snippets.

@bjankord
Created April 14, 2012 14:15
Show Gist options
  • Save bjankord/2384682 to your computer and use it in GitHub Desktop.
Save bjankord/2384682 to your computer and use it in GitHub Desktop.
Simple cross-browser debug function
function debug(text) {
((window.console && console.log) || (window.opera && opera.postError) || window.alert).call(this, text);
}
var test = "This is a test";
debug(test);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment