次のコードはエラーを示しています"Uncaught TypeError: Cannot set property 'className' of null"
<style>
.deactive { height:250px; }
.active { height:150px; }
</style>
<script>
function click(div) {
document.getElementById('div').className = 'active';
}
</script>
<a href="#" onclick="click(Division);">
<div id="Division" class="deactive">
<!--Division contents-->
</div>
</a>
アンカータグのクリックイベントで部門のIDをjs関数に渡そうとしています..部門のクラス名を変更したいのですが、エラーを特定するのに役立ちます..