add

Monday, 26 August 2013

Disable Cut, Copy and Paste Options in textbox using jQuery

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Disable Cut, Copy and Paste Options in textbox using jQuery</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript">
    $(function () {
        $('#txtName').bind("cut copy paste", function (e) {
            e.preventDefault();
        });
    });
   
</script>
</head>
<body>
<div>
<input type="text" id="txtName" />
</div>
</body>
</html>

No comments:

Post a Comment