Visualizzazione dei risultati da 1 a 2 su 2

Discussione: tasto destro mouse

  1. #1

    tasto destro mouse

    qualcuno conosce uno script per disabilitare il tasto destro del mouse in una form?
    Grazie!

  2. #2
    <!-- 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("Spiacenti, il tasto destro del mouse e' disabilitato");
    return false;
    }
    return true;
    }
    document.onmousedown=right;
    if (document.layers) window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown=right;
    // End -->

    ciao
    mad
    Madesign - La tua immagine Web
    http://www.studiomadesign.net
    Msn: maddpisa@hotmail.com

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.