Skip links

architectural designers in chennai

This website uses cookies to improve your web experience.
Explore
Drag
// Disable right-click document.addEventListener("contextmenu", (e) => e.preventDefault()); // Disable Print Screen key document.addEventListener("keyup", function (e) { if (e.key === "PrintScreen") { navigator.clipboard.writeText(""); alert("Screenshots are disabled on this site."); } }); // Attempt to block screen capture via shortcut keys document.addEventListener("keydown", function (e) { if ((e.ctrlKey && e.key === "p") || (e.metaKey && e.key === "p")) { e.preventDefault(); alert("Printing is disabled on this site."); } });