на нажатии отключить кнопку ESC с помощью jQuery

$(document).keydown(function(e) {
    if (e.keyCode == 27) return false;
});
Ankur