Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

enable clipboard

// Paste into browser console to enable pasting on a webpage
var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);
 
PREVIOUS NEXT
Tagged: #enable #clipboard
ADD COMMENT
Topic
Name
6+1 =