Skip to content

Instantly share code, notes, and snippets.

@pavenuto
Created July 16, 2010 18:48
Show Gist options
  • Save pavenuto/478744 to your computer and use it in GitHub Desktop.
Save pavenuto/478744 to your computer and use it in GitHub Desktop.
// Inspired by the King of the Kurbs!
// $.trace('Woooo!');
$.extend({
trace: function(msg){
if (window.console) {
console.log(msg);
};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment