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
The issue is specific to certain version of ie11, mine is from MS virtualbox machine. If change alone does not work, try this combo:
$('#search').on('change blur',function(){ alert('hii'); })