Thursday, 18 September 2014

Disable cut, copy & paste using JQuery

  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. $('#TextBox1').bind('copy paste cut',function(e) {
  4. e.preventDefault(); //disable cut,copy,paste
  5. alert('cut,copy & paste options are disabled !!');
  6. });
  7. });
  8. </script>
  9. <asp:TextBox ID="TextBox1" runat="server" ></asp:TextBox>

No comments:

Post a Comment