/PastePreventer

Jquery plugin to disable copy & paste in all borwsers especially on touch devices first

Primary LanguageJavaScript

#Paste Preventer

xcv

Simple Jquery plugin to prevent copying and pasting in all browsers( focused on mobile browsers )

This plugin is based on answers from this SO Question

Demo

Iinstallation:

    <script src="pastepreventer.min.js"></script>

Usage:

    $(document).ready(function(){
    
        $(".words").blockCopy({ // Block copy on elements which have 'words' class
            blockPasteClass : "noPasting",  // Optional: block pasting on inputs (or textareas) which have 'noPasting' class
            message:"Shame on you!"         // Optional: Message to show if user tried to paste
        });
        
    });