Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- $(document).ready(function(){
- $(this).bind('copy', function(e) {
- e.preventDefault();
- });
- $(this).bind('cut', function(e) {
- e.preventDefault();
- });
- $(this).bind("contextmenu", function(e) {
- e.preventDefault();
- });
- $(this).mouseup(function(e) {
- if (e.which === 3) {
- e.preventDefault();
- }
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment