Disable Crtl U

[Solved] Disable Crtl U | Php - Code Explorer | yomemimo.com
Question : disable crtl u

Answered by : worrisome-whale-zoeg8jcl3txa

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
document.onkeydown = function(e) { if (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 86 || e.keyCode === 85 || e.keyCode === 117)) { return false; } else { return true; }
};
$(document).keypress("u",function(e) { if(e.ctrlKey) {
return false;
}
else
{
return true;
}
});
</script>

Source : https://stackoverflow.com/questions/20372394/how-to-disable-ctrlu-using-javascript | Last Update : Thu, 27 Jan 22

Answers related to disable crtl u

Code Explorer Popular Question For Php