Category : Css

Thêm đoạn css này vào body body { -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } Thêm đoạn JavaScript này file site.js thường viết của bên mình. <script language=”JavaScript”> window.onload = function() { document.addEventListener(“contextmenu”, function(e) { e.preventDefault(); }, false); document.addEventListener(“keydown”, function(e) { //document.onkeydown = function(e) { // “I” key if (e.ctrlKey ..

Read more