Play in App
Play in App
iOS
Android
EKZStickWarAZE
Follow
220
3
1 Comments
Next up
ahmos
6w
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Destroy Örneği</title> <style> #kutu { width: 200px; height: 200px; background: crimson; color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; } </style> </head> <body> <div id="kutu">BENİ DESTROY ET</div> <br> <button onclick="destroyBox()">Destroy</button> <script> function destroyBox() { const element = document.getElementById("kutu"); element.remove(); // olay burada } </script> </body> </html>
2
Reply
Comment in the App