codice:
<head>
<script>
function objQueryString(qs){ 
	dic = new Array()
	if(!qs)	qs = location.search
	qs = qs.replace(/\?/,'')
	aQs = qs.split('&')
	txt = ''
	for(i=0;i<aQs.length;i++){
		aPV = aQs[i].split('=')
		dic[aPV[0]]=aPV[1]
	}
	return dic
}

var qs = objQueryString()
var this_input = qs['prova'];
</script>
</head>

<body>
<textarea id="txtinput"></textarea>
<script>
  document.getElementById('txtinput').value = this_input;
</script>
</body>
Io utilizzo questo script per recuperare un dato da un form ma non riesco a capire il perchè se scrivo ciao come stai nella textarea esce scritto ciao+come+stai? non posso eliminare il "+"???

Grazie per il vostro aiuto.