When the visitor clicks the button after typing a text in the INPUT field which is in a framed page , is it possible to copy the typed text into the INPUT field which is on the parent page ?
iframed page code : page1.html
<form action="">
Search:<input type="text" name="searchname"><input type="submit" value="send" size="45">
</form>
Parent page:
<IFRAME id="iframe1" src="page1.html"></IFRAME><BR>
You searched:<INPUT type="text" id="result">
I want that the searched items display on the parent page. Thanks.