hehe lo siento, pero muchas gracias! me sirvio muchisimo tu ayuda, que crees? lo prove tal y como lo escribi arriba y no me funciono, pero cambie name por id y listo! muchas gracias, el codigo quedo asi:
Código HTML:
Ver original
<input type="button" value="Ok" onclick="aplicar()">
<script language="javascript"> function aplicar() {
var str = document.getElementById('nombre').value;
document.getElementById('input1').value = str[0];
document.getElementById('input2').value = str[1];
document.getElementById('input3').value = str[2];
document.getElementById('input4').value = str[3];
document.getElementById('input5').value = str[4];
}