Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Created February 5, 2014 04:15
Show Gist options
  • Save imbcmdth/8817324 to your computer and use it in GitHub Desktop.
Save imbcmdth/8817324 to your computer and use it in GitHub Desktop.
cheating at 10fastfingers
function foo(){var str = $('.highlight').text();$("#inputfield").val(str);str=str.split('');str.push(' ');bar(str);} function bar(str){var v=str.shift().charCodeAt(0);$("#inputfield").trigger($.Event( "keyup", {keyCode: v, charCode: v,which: v}));setTimeout(str.length?bar:foo,10+((Math.random()*70)|0),str);} foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment