Showing all 2 results

document.addEventListener('copy', function(e) { const copiedText = window.getSelection().toString(); const copyrightText = '\n\n© 2024 Your Company. All rights reserved.'; e.clipboardData.setData('text/plain', copiedText + copyrightText); e.preventDefault(); });