It appears that entering text into does not trigger a change event. I would like a change event so that I can w
The event change is triggered on losing focus and it is working as it is supposed to be, you may need to use keyup.
keyup
Live Demo
$('input').on('keyup', function() { alert('change'); });