Source Code:
(back to article)
Submit
Result:
Report an issue
<body> <div>It's the only thing you see, as the next div is removed!</div> <div id="mydiv">you don't see me if I'm removed!</div> </body> <script> const div = document.getElementById("mydiv"); div.remove(); </script>