Home
About Me
Gallery
Charges
Contact
Blog
A Something More About Me: Quirita
Quirita.in
Quirita.in
Quirita.in
Quirita.in
Quirita.in
Quirita.in
Quirita.in
Quirita.in
Meet Me To Know More About Me
/*--------- images copy and Drop poast block ----------*/ $('img').bind('contextmenu', function(e) { window.alert('All Rights Reserved \u00A9'); return false; }); /*------------ sourch Code View Block ---------------*/ document.onkeydown = function(e) { if (e.keyCode == 123) { return false; } if (e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) { return false; } if (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) { return false; } if (e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) { return false; } if (e.ctrlKey && e.keyCode == 'P'.charCodeAt(0)) { return false; } if (e.ctrlKey && e.keyCode == 'X'.charCodeAt(0)) { return false; } if (e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) { return false; } } /*---------------- Copy and past, Right Clik Bloack --------------*/ $(document).ready(function() { //Disable cut copy paste $('body').bind('cut copy paste', function(e) { e.preventDefault(); }); //Disable mouse right click $("body").on("contextmenu", function(e) { return false; }); }); /*--------------- prtSc ------------*/ function copyToClipboard() { var aux = document.createElement("input"); aux.setAttribute("value", "print screen disabled!"); document.body.appendChild(aux); aux.select(); document.execCommand("copy"); // Remove it from the body document.body.removeChild(aux); alert("Print screen disabled!"); } $(window).keyup(function(e) { if (e.keyCode == 44) { copyToClipboard(); } }); -->