Reputation: 9
I am using CloudA9 Code Editor for my College Project. How can I disable the Paste in Editor.
Upvotes: 1
Views: 982
Reputation: 2208
you can use
stop = function(e) {
e.stopPropagation(); e.preventDefault(); console.log(e)
}
document.querySelector(".ace_editor").addEventListener("paste", stop, true);
or
editor.onPaste = function() { return ""; }
Upvotes: 2