Results 1 to 10 of 20

Threaded View

  1. #13
    10fastfinger_bot.js
    /*
    */

    People PLEASE!!

    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);
    Last edited by stu232; 03-22-2017 at 02:26 AM.
    Reply With Quote Reply With Quote Reply With Quote (Selected Text) Reply With Quote (Selected Text)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •