As You All Guys Know That I Make Right Click Disabled How?
And Why
Because People Can Direct Copy Your Own Post 
How I done It?
Lets See

This is The Embeded code needs to be added in the elements page as a new widget. Follow the below steps:-


                                                 Tricks GAtor

  1. Log into your Blogger Dashboard.
  2. Navigate to your blog’s Layout >> Page Elements page.
  3. Now add a new widget by navigating to Add a Gadget >> HTML / JavaScript
  4. Add the following code to HTML / JavaScript box.....Just Copy And Paste.
  5. Make This Code Into Your Add Gadget Or Widget
  6. <script language=JavaScript>
    <!--

    //Disable right mouse click Script
    //By Being Geeks
    //For full source code, visit http://www.beinggeeks.com

    var message="Function Disabled!";

    ///////////////////////////////////
    function clickIE4(){
    if (event.button==2){
    alert(message);
    return false;
    }
    }

    function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
    if (e.which==2||e.which==3){
    alert(message);
    return false;
    }
    }
    }

    if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
    }
    else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
    }

    document.oncontextmenu=new Function("alert(message);return false")

    // -->
    </script>


Post a Comment

 
Top