How to copy text from a blocked site using JavaScript
Let's get straight to the point!
- Step 1: Copy the below code to the web developer tool
- Step 2: Run it!
- Step 3: Done
Code
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('copy', allowPaste, true);
document.addEventListener('paste', allowPaste, true);