Is there a code to disable right-clicking on your MySpace profile???
no. Just don't right click
Is there a code to disable right-clicking on your MySpace profile???There are codes that say they will accomplish this task. The only problem is that there are ways around all of these codes. There really is no reliable ways to block the right click menu.
Is there a code to disable right-clicking on your MySpace profile???There is a code, but "
1. It needs to be implemented an the pages that reside on the Myspace server
2. Cheater is right,; power-users are undaunted by html and javascript restrictions. If I want the information on your webpage , I can get it a thousand ways.
Is there a code to disable right-clicking on your MySpace profile???modify your <body> tag to insert this code:
<body oncontextmenu="return false">
this is to prevent users from getting/grabbing your pics
you can also try this, insert this inside the <head> tag:
<SCRIPT LANGUAGE="JavaScript1.1">
<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click.");
return false;
}
return true;
}
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// End -->
</script>
</HEAD>
More Related Questions and Answers ...
The Myspace information post by website user , myspace-codes.com.cn not guarantee correctness.
