Pregunta

Simply i want to append some characters to the parent window's textarea.

str="some character" 

window.opener.document.getElementById('id1').value = str;

It changes the parent window's textarea's value to "some character"..But I want to append this text to textarea's value. like,

window.opener.document.getElementById('id1').value.append(str); // not working

But it is not working.

How can I do this?

¿Fue útil?

Solución

try window.opener.document.getElementById('id1').value += str;

Otros consejos

You can do it as below.

window.opener.document.getElementById('id1').value = 
window.opener.document.getElementById('id1').value + str;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top