19 lines
435 B
JavaScript
19 lines
435 B
JavaScript
|
(function($){ // block scope
|
||
|
jQuery.fn.log = function (msg) {
|
||
|
if (!window.console || !console) return;
|
||
|
if (window.console || console.firebug){
|
||
|
msg = msg || '';
|
||
|
if(msg !== '') msg += ': ';
|
||
|
console.log("%s%o", msg, this);
|
||
|
}
|
||
|
return this;
|
||
|
};
|
||
|
$.extend({
|
||
|
log : function (msg) {
|
||
|
if (!window.console || !console) return;
|
||
|
if (window.console || console.firebug) {
|
||
|
console.log("%s", msg);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
})(jQuery);
|