Home › Forums › CSS › The praxis of right click blocking › Re: The praxis of right click blocking
November 29, 2012 at 1:42 pm
#115942
Participant
> You can’t right click. I’ve downloaded the files and can’t seem to find an image file there.
If you’re asking how it’s done…. Disabling right-click is done with easy jQuery:
$(document).ready(function(){
$(document).bind(“contextmenu”,function(e){
return false;
});
});
The images can be downloaded pretty easily, not sure why you’re having trouble with it because they’re just there in the source code:
http://cdn.portfoliobox.net/__clients/544/ppics/medium/169557mwa9w2.jpg
http://cdn.portfoliobox.net/__clients/544/ppics/medium/526582bw9a12.jpg
And so on. Nothing encrypted or encoded, this is how it shows up in the source:
…..




…..