В общем. Есть форма
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>js test</title>
<script src="js/testscript.js"></script>
</head>
<body>
<div id="header">
<center>Тестовая страница</center>
</div>
<div class="wrapper">
<div id="content">
<input type="text" name="width" size="3" class="num_only" id="width" placeholder="Ширина" onkeyup="return svalue(this)"><br>
<input type="button" value="показать" onclick="alert(check_width)"
</div>
</div>
<script>var check_width = document.getElementById("width").value;</script>
</body>
</html>
Переменная должна получать значение формы, но переменная пустая. Где я ошибся?