The value is always undefined (Chrome 12.0.742.112).
The .get() does return an HTML input object but accessing value is undefined.
<input id="a" value="abc" onkeyup="b()" />
<script src="jquery.js"></script>
<script>
function b() {
alert($('#a').get().value);
}
</script>
However using standard JS works (as does .val()):
document.getElementById('a').value // this works
$('#a').val() // as does this
.getwithout arguments returns an array. You can pass in0to get the first element.Use