Saturday 19 May 2012

Disallowing cut/copy/paste operations on a TextBox

Below is the simple jquery to not allow user to cut/copy/paste operations on a TextBox

<script type="text/javascript">
$(document).ready(function() {
$('#<%=txtNewPwd.ClientID%>').bind('cut copy paste',
function(e) {
e.preventDefault();
alert("Cut / Copy / Paste disabled in this textbox");
});
$('#<%=txtConfirmNewPwd.ClientID%>').bind('cut copy
paste', function(e) {
e.preventDefault();
alert("Cut / Copy / Paste disabled in this textbox
too!");
});
});
</script>

Post By : Dipen shah
Stay Tuned

No comments:

Post a Comment