I use this JQuery:
$(document).on(‘keydown’,function(e){var $target=$(e.target||e.srcElement);if(e.keyCode==8&&!$target.is(‘input,[contenteditable=“true”],textarea’))
{e.preventDefault();}})
Note: Until the JQuery is loaded is possible press the backspace!