I am making this javascript code in order to disable Ctlr+c and Ctlr+v, prenscreen, ALT+TAB, Ctlr+S, and PrintScreen keys.
you can use it jquery for this. You just need to bind the cut, copy and paste function with your element.
cut
copy
paste
And add this Jquery script:
$(document).ready(function() { $('#Selector').bind('copy paste', function(e) { e.preventDefault(); }); });