Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 399 Bytes

README.md

File metadata and controls

15 lines (14 loc) · 399 Bytes

10fastfingers-hack

Copy-paste this in your browser console to get maximal words per minute -> https://10fastfingers.com/typing-test/english

var input = $('#inputfield')[0]
var ev = $.Event('keyup')
ev.which = 32
setInterval(function() {
    if ($('.highlight')[0]) {
        input.focus()
        input.value = $('.highlight').text()
        $(input).trigger(ev)
    }
}, 100)