Last active
December 10, 2015 16:39
-
-
Save Amatewasu/4462705 to your computer and use it in GitHub Desktop.
Hack for 10fastfingers.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Script pour http://10fastfingers.com/ by @Amatewasu - WTFPL | |
Vous devez coller ce script à chaque fois dans la console de votre navigateur. (ou simplement remettre n = 1 à chaque essai :-°) | |
Vous commencez par taper le premier mot puis sur espace pour soumettre un mot :) | |
*/ | |
var input = document.getElementById("inputfield"); | |
var els = document.querySelectorAll("#row1 span"); | |
function foo (){ | |
input.value = els[n].textContent; | |
} | |
input.onkeydown = function (e){ | |
if (e.keyCode == 32){ | |
setTimeout(function (){ | |
foo(); n++; | |
}, 100); | |
} | |
}; | |
var n = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Un script d'une bien meilleure qualité : https://twitter.com/Sadiquo/status/287630006421696512
(il faut reconnaître que le meilleur ne vient pas forcément de soit même)