Saturday 10 September 2011

How To Disable selection, Copy in your Web Page Using CSS

<style type="text/css">
    .protectedText
    {   
        /*-moz-user-focus: ignore;   
        -moz-user-select: none;
        -moz-user-selectall: none;*/
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
         user-select: none;
     }
</style>
 
How to Apply given Below: 
 
<body ondragstart="return false;" 
onselectstart="return false;" class="protectedText"> 

No comments:

Post a Comment