Wednesday, August 6, 2014

jQuery disable right click on webpage

jQuery disable right click on webpage


Live DemoDownload Script

Step 1:
Need library file to perform empty action.
Please copy and Paste below library file.

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

jQuery disable right click

<script type="text/javascript">
        $(function() {
            $(this).bind("contextmenu", function(e) {
                e.preventDefault();
                alert("Right Click is not allowed");
            });
        });
    </script>

Please share your comments and feedback.Thanks.Please subscribe my updates via email.

No comments:

Post a Comment