Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS The praxis of right click blocking Re: The praxis of right click blocking

#115942
Senff
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:

…..

-

 KRISTINA BAZAN

-

 KRISTINA BAZAN
…..