os muestro el siguiente código Javascript::
Código HTML:
function verTexto(url,texto){ var nomeXanela = "xanLerTexto"; var pdadesXanela = "resizable=no,width=480,height=390"; xanelaTexto=window.open(url,nomeXanela,pdadesXanela); xanelaTexto.document.formPopUp.textoBD.value= texto; }
y en la ventana de popup::
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Xanela ler texto</title> </head> <body> <form name="formPopUp" id="formPopUp" method="post" action=""> <textarea id="textoBD"></textarea> </form> </body> </html>
Código HTML:
xanelaTexto.document.getElementById('formPopUp').getElementById('textoBD').value= texto;