inherit
38820
0
Jun 27, 2005 18:52:24 GMT -8
charmed483
18
March 2005
charmed483
|
Post by charmed483 on Jun 27, 2005 18:58:15 GMT -8
I need A No right click code the one i have will not work .
|
|
inherit
47851
0
Jan 1, 2006 16:15:25 GMT -8
x3_bps_sl33py_bps_x3
73
June 2005
x3sl33pybps
|
Post by x3_bps_sl33py_bps_x3 on Jun 27, 2005 22:07:59 GMT -8
Global Header
This One Will Not Pop Up A Window Messenge
<body oncontextmenu="return false;">
OR Try This One (U Can Edit To What ever u want To Display when The Right Click)
<SCRIPT LANGUAGE="javascript"> function click() { if (event.button==2) { alert('YOUR TEXT GOES HERE') } } document.onMouseDown=click </SCRIPT>
|
|
inherit
Lead Server Distroyer
37914
0
Jan 4, 2012 18:31:28 GMT -8
Corrupt
HERE IN PROTOCOLS, NOT IN BINDINGS
6,449
February 2005
pwvc
|
Post by Corrupt on Jun 27, 2005 23:24:28 GMT -8
or try this one, just edit the red sections to make it say what you want it to and place it in the global header
<script language="JavaScript">
var message = "Sorry, that function is disabled.\n\n"; message += "If you would like a copy of the Images, "; message += "Contact the webmaster";
function click(e) { if (document.all) { if (event.button == 2) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } }
if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click;
</script>
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jun 28, 2005 0:57:10 GMT -8
Please use code requests next time
|
|