In which client code cancels propagation of key events, and autotype respects this.
$('textarea')
.keypress(function(){
return false; // cancels propagation
})
.autotype("Hello.", {delay: 50});