Disabling Cut, Copy, and Paste Operations in Textbox and Textarea |
X

Congrats, You are Subscribed to Receive Updates.

Disabling Cut, Copy, and Paste Operations in Textbox and Textarea


Let’s start making a textbox and disable the cut copy and paste operations, let me create a HTML Textbox and making it to does not allow users to Cut, Copy Paste and typed datas.

<input type="text" name="kv_text_box_disable_edit" id="kv_textbox" value="" >

This is a sample textbox and now  we are going to disable the cut copy operations by using jQuery.

<script type="text/javascript">
$(document).ready(function() {
	$('#kv_text_box').bind('copy paste cut',function(e) { 
		e.preventDefault(); //this line will help us to disable cut,copy,paste		
	});
});
</script>

The above function will disable the Cut Copy and Paste Operations. But you can delete it.

disable-cut-copy-paste

Read here to disable “ctrl” key  and specific key on your Client Browser.

 

commenter

About Varadharaj V

The founder of Kvcodes, Varadharaj V is an ERP Analyst and a Web developer specializing in WordPress(WP), WP Theme development, WP Plugin development, Frontaccounting(FA), Sales, Purchases, Inventory, Ledgers, Payroll & HRM, CRM, FA Core Customization, PHP and Data Analyst. Database Management Advance Level

Comment Below

Your email address will not be published. Required fields are marked *

*

Current ye@r *

Menu

Sidebar