• There is an important update regarding account security and 2FA. Please click here for more information.
  • ❤️ It's that time of the year again - Happy Valentine's Day! Luvdisc is back to help spread the luv again. Interested in sending a message of appreciation to some special users on the site, and earning a brand-new badge in the process? Then click here for more information! ❤️
  • 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.
  • Imgur has blocked certain regions from viewing any images uploaded to their site. If you use Imgur, please consider replacing any image links/embeds you may have on PokéCommunity so everyone can see your images. Click here to learn more.

does anyone know...

  • 3,546
    Posts
    22
    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