About:
Horje.com PHP HTML CSS JAVAScript Editor.
Version: 1.0
PHP Version: 7.3.33
Restore
Store
Run »
« Get
<!DOCTYPE html> <html> <body> <input type="text" oncut="myFunction()" value="Try to cut this text"> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = "You cut text!"; } </script> </body> </html>