i can use this code to handle "ctrl + s" on firefox :
$(window).unbind('keypress').keypress(function(event) {
if (!(event.which == 115 && event.ctrlKey)) return true;
$('#save').click();
event.preventDefault();
return false;
});
but , it can't work on chrome and ie ,
so what can i do ?
thanks