Al hacer clic en el botón Deshabilitar ESC usando jQuery

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