I have a jQuery event handler that reacts to every change in an
element:
$(\"#m
as far as I know, "input" is not the event you want to use. Since "input" is analogous to "change", it tends to produce a bad result when your string approaches 0 chars, use keyup instead
keyup
$("input#myId").bind('keyup', function (e) { // Do Stuff });