Return to Snippet

Revision: 25877
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
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