Показать сообщение отдельно

  #23  
Старый 26.06.2007, 20:35
hhover
Познающий
Регистрация: 21.05.2007
Сообщений: 61
Провел на форуме:
79888

Репутация: 145
По умолчанию

Isis,

parent.htm
Код HTML:
<form name='formname'>
<input type='text' name='inputname' />
<input type='button' value='button' onclick="window.open('popup.htm');" />
</form>
popup.htm
Код HTML:
<form name='popupform'>
<input type='text' name='popuptext' />
<input type='button' value='button' onclick="window.opener.document.forms['formname'].elements['inputname'].value = document.forms['popupform'].elements['popuptext'].value;" />
</form>

Последний раз редактировалось hhover; 26.06.2007 в 23:52..
 
Ответить с цитированием