My jQuery code not working in IE 9 but work well in IE7, IE8, Chrome, FF.
This is my code:
$(document).keypress(function(){
window.clearTimeout();
window.setTimeout(function() {
//Do something...
return false;
}, 800);
});