amatiasq
8/7/2012 - 1:50 PM

Hack today's Google's Doodle (press numpad 0 to start)

Hack today's Google's Doodle (press numpad 0 to start)

function press(key) {
	document.getElementById("hplogo").onkeydown({
		keyCode:key,
		preventDefault:function() { }
	});
}

var interval;
document.addEventListener('keydown', function(e) {
	if (e.keyCode !== 96)
		return;

	if (interval) {
		clearInterval(interval);
		interval = null;
	} else {
		interval = setInterval(function() {
			press(37);
			press(39);
		}, 0);
	}
}, true)