you could use
<form name="frm">
<input type="text" name="unf">
<a href="#" onclick="sendData();"><img name="blah"></a>
</form>
<script>
function sendData()
{
var data = document.frm.unf.value;
//where frames[1] is the name of the frame and input is
//the field you want to send it to:
parent.frames[1].input.value = data;
}
</script>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.