Does anyone know a simple way to store the text in a textarea - so it's avalible after reload?
I know the values are on the client side - so it's not possible to save it as a php cookie!
If you reload the page the page it fetched from the server, and I don't think that any java or php script can be of any help
//babak
Have you tried using sessions?
Yes, I’m, already using sessions - but they are only fore the submitted data - and therefore not the data on the client side!
When you reload page onUnload event is fired. Create a JavaScript function that either sets cookie with text as a value, or submits all the data already inserted to your script by using form.submit()