Skip to content Skip to sidebar Skip to footer

Copying Text From Website, Attaches Link With Text Copied?

Sorry for the title not really sure how to explain it being that I don't fully understand how it works. I'm not a veteran coder so sorry if I should already know this. When I copy

Solution 1:

Check its body listener, which has a 'oncopy' event listener

document.body.oncopy = function() {
    // replace the origin copy text
}

Solution 2:


Post a Comment for "Copying Text From Website, Attaches Link With Text Copied?"