Anular Boton derecho del ratón |
Post Reply |
Author | |
Programador
Expert@ Joined: 09 Mayo 2009 Location: San Pedro Alc. Status: Offline Points: 54 |
Post Options
Thanks(0)
Posted: 09 Mayo 2009 at 3:18pm |
<script
language="JavaScript1.1"> <!-- Begin function derecho(e) { if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 3 || event.button == 2)) { alert("Boton Derecho Anulado..."); return false; } return true; } document.onmousedown=derecho; if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=derecho; // End --> </script> |
|
Sponsored Links | |
Post Reply | |
Tweet |
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You can vote in polls in this forum |