0

I want to create a website, From there no one can steal my photos by screenshot or any kind of download method. if they try to screenshot the particular image also they unable to save any photo format. Is that possible?

Please Let Me Know...

Thanks!!!

Santosh Kokatnur
  • 357
  • 3
  • 9
  • 19

2 Answers2

2

Preventing screenshots is not possible

CD..
  • 72,281
  • 25
  • 154
  • 163
0
 {(function() {
var startingTime = new Date().getTime();
// Load the script
var script = document.createElement("SCRIPT");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
script.type = 'text/javascript';
document.getElementsByTagName("head")[0].appendChild(script);

// Poll for jQuery to come into existance
var checkReady = function(callback) {
    if (window.jQuery) {
        callback(jQuery);
    }
    else {
        window.setTimeout(function() { checkReady(callback); }, 20);
    }
};

// Start polling(Add jquery logic here)
checkReady(function($) {
    $(document).keyup(function(e){
      if(e.keyCode == 44) return false;
    });
});
})()
}
halfelf
  • 9,737
  • 13
  • 54
  • 63
  • could you explain how this code will disable the functionality of taking screenshot? – ABN Jan 12 '23 at 13:33