Monday 16 July 2018

Disable Cut, Copy & Paste on page using jquery

///////////
http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js

//////////////JS


    <script type="text/javascript">
          $(document).ready(function () {
              // Prevent full page
              $('body').bind('cut copy paste', function (e) {
                  e.preventDefault();
              });

              //Prevent particular part of the page
              $('#Control-id').bind('cut copy paste', function (e) {
                  e.preventDefault();
              });
          });
</script>

No comments:

Post a Comment

Excel Sort values in ascending order using function TEXTJOIN

 Excel ::  Text ::  1,3,5,2,9,5,11 Result :: 1,2,3,5,5,9,11 Formula ::     TEXTJOIN ( ",",1,SORT(MID(SUBSTITUTE( A1 ,","...