Skip to content

Instantly share code, notes, and snippets.

@dfang
dfang / gist:3168391
Created July 24, 2012 06:33
jquery snippets : to replace console.log
Snippets:
jQuery.logThis = function( text ){
if( (window['console'] !== undefined) ){
console.log( text );
}
}