Does text input element not have a change event? When I attach a change event handler to a text input it is not being fired. Keyup is fired, but keyup is not sufficient for
You can achieve it:
$(document).ready(function(){ $('#textBox').keyup(function () {alert('changed');}); });
or with change (handle copy paste with right click):
$(document).ready(function(){ $('#textBox2').change(function () {alert('changed');}); });
Here is Demo