Jetzt einfach aus dem bauch nochmal in kurz
Code:
<script>
var string = "aaaaaaaaaaa";
var desti = "afpafjp";
function type(charpos)
{
    if(string[charpos] != undefined)
    {
        document.getElementById(destination).innerHTML += string[charpos];
        type(++charpos);
    }
}
type(0);
</script>
<DIV ID="afpafjp"></DIV>