🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

disableEverything is a cross-browser and mobile-compatible jQuery plugin used to disable user interactions (scroll, copy, input, right click, etc) on the webpage.


Documentation

Main Features:

  • Disable Right Click, Text and Image Copying, Keyboard, Scrolling
  • Display Custom Message after an Attempt to Copy your Content
  • Very Easy to Setup, no CSS File
  • Works with Desktop, Tablets and Phones
  • Well Documented
  • Cross-Browser Support

Options:

    $(function() {         $(document).disableEverything({              // Disable Mouse Right Click             disableRightClick: true,             rightClickMessage: 'Right Click is Disabled.', // Message Displayed when Someone Right Clicks              // Disable Possibility to Copy Text and Images             disableCopy: true,             copyMessage: 'Copying is not Allowed.', // Message Displayed at an Attempt to Copy              // Disable Possibility to Drag out Images with the Mouse from the Browser onto the Desktop             disableImageDragging: true,              // Disable Keyboard             disableKeyboard: true,              // Disable Scrolling             disableScroll: true          });     });

You May Also Like