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>

Comments

Popular posts from this blog

How to show Squarespace gallery in Masonry view

How to Create Secondary Menu in Squarespace

How to check if current post have specific shortcode in Wordpress