codice:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Esercitazioni Javascript</title>
<script language="javascript" type="text/javascript">
	//Coto i tags nella pagine
		function countchars(n) {
		var tot = 0;	
		if (n.nodeType == 3) {
			tot += n.length;
		}
		
		var tos = n.childNodes;
		for(i = 0; i < tos.length; i++) {
			tot += countchars(tos[i]);
		}	
	return tot;
	}
</script>
</head>
<body onload="alert(countchars(document.body));">



ciaopastasciutta

desk</p>
</p>
</body>
</html>
Cosa sbaglio?
Aiuto grazie mille!