Hi, I'm trying to get a input text value on jQuery .keypress() function, I've saw various examples with keypress and keydown but not dedicated on getting the input value.
Is it possible?
$(document).ready(function(){
$("#my_field").keydown (function (e) {
alert (e);
});
});
The returned object has a series of properties but I haven't saw something for value input field attribute.
Does exists some way to get it?