eng
competition

Text Practice Mode

Ten fast finger hack( really works!)

created May 25th 2019, 03:52 by Jinny


18


Rating

105 words
123 completed
00:00
First, open the console. Then, copy this:
var word_idx = 0;
var interval_per_word = 250; // in milliseconds
function hackit(){
    if(word_idx<words.length){
        $('#inputfield').val(words[word_idx] + ' ');
        var keyup = jQuery.Event('keyup');
        keyup.which = 32;
        $('#inputfield').trigger(keyup);
        word_idx++;
        setTimeout('hackit()', interval_per_word);
    }
}
setTimeout('hackit()', interval_per_word);
 
And paste it on the console. Change the 2nd line when it says
var interval_per_word = 250
change the 250 to like 200 or 1
and it will go faster, but I tried 1 you'll finish the whole test in 2 seconds, and it will have no more words so then the time will keep going and the wpm will go low... Good luck!
 

saving score / loading statistics ...