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 supported in IE.
jQuery 1.7.
<body>
<input id="search"></input>
</body>
$('#search').on('change',function(){
alert('hii');
})
jsfiddle:-- https://jsfiddle.net/7v0ohes8/