On Click Disable ESC Tombol Menggunakan JQuery

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