Hi,
I hace this very simple javascript to write on a text area when the link is clicked:
<head>
<script language="javascript" type="text/javascript">
function addtext(text) {document.form.textarea.value = document.form.textarea.value+= text;}
</script>
</head>
<body>
<form action="" method="" name="form">
<textarea name="textarea" rows="" cols="" wrap="wrap"></textarea>
</form>
<a href="javascript:addtext('q');">q</a>
</body>
Now I want to up the ante.
What I want to do is have the form in another another window, and that when I click the link, I writes to a textarea in another window.
I´m not necessarily asking for the code because I realize this might be quite complicated.
The question would be where to start, because I haven´t got a clue!! (when I google cross window or cross domain interaction with javascript I dont really get anything useful).
So any helo I can get, libraries, plugins or whatever might guide me in the right direction is more than appreciated.
Thanks in advance!
Trufa