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; });
1.4m articles
1.4m replys
5 comments
57.0k users