Revision: 25877
Updated Code
at April 12, 2010 23:50 by Meander365
Updated Code
function log() {
try {
console.log.apply( console, arguments );
} catch(e) {
try {
opera.postError.apply( opera, arguments );
} catch(e){
alert( Array.prototype.join.call( arguments, " " ) );
}
}
}
Revision: 25876
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 12, 2010 23:47 by Meander365
Initial Code
function log() {
try {
console.log.apply( console, arguments );
} catch(e) {
try {
opera.postError.apply( opera, arguments );
} catch(e){
alert( Array.prototype.join.call( arguments, " " ) );
}
}
}
});
Initial URL
Initial Description
Use to debug javascript in all browsers.
Initial Title
Cross Browser Javascript Debugger
Initial Tags
javascript, debug, log
Initial Language
JavaScript