How to Disable Keyboard on Any Web Page
<script>
document.onkeydown = function (e) {
return false;
}
</script>
FOR SAMLL PART OR DIV
<script>$(selector).keydown(function(event) { return false; });</script>
<script>
document.onkeydown = function (e) {
return false;
}
</script>
FOR SAMLL PART OR DIV
<script>$(selector).keydown(function(event) { return false; });</script>
Comments
Post a Comment