I have a problem with a jquery change event on a text input that works as expected in Firefox and IE but not in Chrome. I also have a keyup event on the text input to manipu
You can use the input event that works like a charm:
input
$('#search-form .term').bind('input', function(){ console.log('this actually works'); });
Source: https://gist.github.com/brandonaaskov/1596867