I want to disable full key boards keys using java-script or jQuery. and is it possible to disable to keyboard using php script ?
try this
document.onkeydown = function (e) { return false; }
for specific area try this
$(".class").keydown(function(event) { return false; });
2.1m questions
2.1m answers
60 comments
57.0k users