• Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

does anyone know...

  • 3,546
    Posts
    21
    Years
    does anyone know the antitheft html code? you know the one where you cant right clikc?
     
    It's Javascript...

    Code:
    <script language="JavaScript1.1">
    // distributed by [url]https://www,hypergurl.com[/url]
    <!-- var debug = true;
    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('This Page is fully protected!');
    return false;
    }
    
    return true;
    }
    document.onmousedown=right;
    if (document.layers) window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown=right;
    //--></script>
     
    i found it. i used it on my old site
    Code:
    <BODY oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
     
    I guess that might work...

    I just googled for it. ^^;
     
    well thanks, i forgot i had that other one.
     
    Back
    Top