Tuesday 31 May 2016

How to prevent cut, copy and paste by using jquery code.

You can prevent cut, copy and paste in your input type textboxe's or in textarea's by using jquery code very easily.

Below is the jquery code:-

$(document).on('cut copy paste', '.controlClass', function (e) {
        e.preventDefault();
    });

No comments:

Post a Comment