Skip to content

Instantly share code, notes, and snippets.

@dfang
Created July 24, 2012 06:33
Show Gist options
  • Save dfang/3168391 to your computer and use it in GitHub Desktop.
Save dfang/3168391 to your computer and use it in GitHub Desktop.
jquery snippets : to replace console.log
Snippets:
jQuery.logThis = function( text ){
if( (window['console'] !== undefined) ){
console.log( text );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment