जब उपयोगकर्ता तत्व के टेक्स्ट को काटता है, तो ऑनकॉपी HTML में विशेषता ट्रिगर।
उदाहरण
आप ऑनकॉपी को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं विशेषता -
<!DOCTYPE html> <html> <body> <input type = "text" oncopy="display()" value = "Copy me"> <h2 id = "test">Try to copy the above text.</h2> <script> function display() { document.getElementById("test").innerHTML = "Your copied text worked!"; } </script> </body> </html>