|    
			
				03/12/2002, 12:09
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: noviembre-2002 Ubicación: Rosario 
						Mensajes: 70
					 Antigüedad: 22 años, 11 meses Puntos: 0 |  | 
  |  Botón derecho sin alerta  
  P: ¿Como puedo deshabilitar el uso del botón derecho dentro de mi página sin mostrar ningún mensaje de alerta?
 R:
 
 
 
 PHP:--------------------------------------------------------------------------------
 <script language=JavaScript>
 function clickIE() {
 if (document.all) {
 return false;
 }
 }
 function clickNS(e) {
 if (document.layers||(document.getElementById&&!docum  ent.all)) {
 if (e.which==2||e.which==3) {
 return false;
 }
 }
 }
 if (document.layers) {
 document.captureEvents(Event.MOUSEDOWN);
 document.onmousedown=clickNS;
 }
 else{
 document.onmouseup=clickNS;
 document.oncontextmenu=clickIE;
 }
 document.oncontextmenu=new Function("return false")
 </script>
     |