Run ❯
Get your
own
website
Result Size:
625 x 565
❯
Run Code
Ctrl+Alt+R
Save Code
Ctrl+Alt+A
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The oncopy Event</h2> <p>Assign an oncopy event to an input element.</p> <input type="text" oncopy="myFunction()" value="Try to copy me"> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = "You copied text!" } </script> </body> </html>