Ray's Asp.net Blog
Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
Event registration app with QR/Paypal
Home
Tuesday, October 30, 2012
How to disable copy/cut/paste for html textbox by jQuery
<script type="text/javascript">
$(document).ready(function(){
$('#txtInput').live("cut copy paste",function(e) {
e.preventDefault();
});
});
</script>
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)