In this guide I am going to show how to make your webpages protected by disabling the right click function, from people who want to copy and paste your descriptions and pictures.
You can pay people on eBay for this material or you can use this free resource for this info, your choice.
So here goes -
Right-Click Disable
There seems to be a lot of interest in the right-click disable code to stop people from stealing picture or even viewing the source code for your listing.
Here is the code to disable the right click function!
Copy and paste it into the start of your listing in the HTML editor.
<script language="javascript">
var message="YOUR WARNING MESSAGE HERE e.g. please do not copy my listing";
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false;")
</script>
I also have one to disable the highlisht and Control and C function - If you would like it, please contact me - the-ebook-hut.co.uk/support
If you found this helpful, please vote yes to ensure that it is seen to other eBayers.
You may want to check that it is OK to use this scripting on eBay.

Thank you for voting. If your vote meets our 