Algo asi, aunque habría que hacerle ajustes supongo
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript"> //<![CDATA[
function verTexto(){
setTimeout('Texto()',100);
}
function Texto(){
var contenido = document.getElementById('texto').value;
var separar = contenido.split(/\t/);
document.getElementById('celda1').value = separar[0];
document.getElementById('celda2').value = separar[1];
document.getElementById('celda3').value = separar[2];
document.getElementById('texto').value = "Pegar aquí";
}
//]]>
<textarea id="texto" onpaste="verTexto();" onclick="this.value='';" oncontextmenu="this.value='';" rows="1" cols="15" style="overflow: hidden; background: lime">Pegar aquí
</textarea> <input type="text" id="celda1" value="" /> <input type="text" id="celda2" value="" /> <input type="text" id="celda3" value="" />
Yo lo hice para 3 celdas con números y todas en una misma fila
SAludos