I'm using jquery 1.2.6 (can't upgrade because it part of a system). I'm getting a weird error.
this is my code:
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
</head>
<body>
<select id="state" name="state">
<option selected="selected"></option>
<option value="none">N/A</option>
<option value="AK">AK</option>
<option value="AL">AL</option>
<option value="AR">AR</option>
<option value="AZ">AZ</option>
<option value="CA">CA</option>
</select>
</body>
</html>
<script type="text/javascript">
$(function() {
var test = $('#state').val();
});
</script>
when I test in IE9 I'm getting this error when loading the page:
"Unable to get value of the property 'specified': object is null or undefined"
Why is that?
document.getElementById('state').value? – dystroy Dec 12 '12 at 9:18