Perché ricevo un errore o un errore di tipo non rilevato: impossibile impostare la proprietà "innerHTML" di null? Pensavo di aver capito innerHTML e di averlo fatto funzionare prima.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<script type ="text/javascript">
what();
function what(){
document.getElementById('hello').innerHTML = 'hi';
};
</script>
</head>
<body>
<div id="hello"></div>
</body>
</html>