I am creating a website, and facing some problem -
I want to Prevent Screenshot in Website when it is tested on Mobile Phone.
I used jQuery for Desktop view It's working fine but how to prevent in mobile
Is it possible to prevent screenshot?
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!");
}