Viral,
<!DOCTYPE html>
<html></head>
<meta charset = "utf -8" />
</head></body>
значения, разделенные пробелами
<input id = "#i4"/>
<button id = "#go">go</button>
</body></html>
<script>
function $(id){
return document.getElementById(id);
}
var inp = $("#i4");
$("#go").onclick = function(){
var vals = inp.value.replace( /^[\s\xA0]+/, "").replace(/[\s\xA0]+$/, "").split(/\s+/);
for(var i = 0, il = vals.length; i < il; i ++){
document.body.appendChild(document.createElement("BR"));
document.body.appendChild(document.createElement("INPUT")).value = vals[i];
}
}
</script>