I am using jQuery change event on a input text box. It seems to work properly in Chrome and Firefox but not in IE11. Is there any other event similar to change which is sup
I think you need to bind event on keyup that would work
keyup
$('#search').on('keyup',function(){ alert('hii'); })
JsFiddle
Here is another reference of Same Answer