jquery.console.log.js

Originalmente em: https://gist.github.com/jlbruno/397528 jQuery.fn.clog = function(msg) { var txt = msg ? msg : “”; if (console && typeof console.log != “undefined”) { console.log(‘%o ‘, this, txt); } return this;} …

Continuar lendo