> How do I get jquery's change event you fire per letter > typed into a text box?
You can use the keyup event. If there are both text boxes and other
elements like radio buttons, you could attach the handler to both
events:
$('input').bind("change keyup", function() {
alert('you changed or typed something');
});

