jquery body on keyup code example
Example 1: set value of attribute using each and keyup jquery
$('.EntryField').keyup(function() {
$('.EntryField').each(function() {
// do stuff
});
});
Example 2: jquery keyup
// Similar to KeyUp but just called on input change (optimal for AJAX calls)
var input = $('#formID').find('input[type="text"]');
input.on('input',
function(){
console.log (input.val());
});