mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
24 lines
407 B
HTML
24 lines
407 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function doit() {
|
||
|
var target = document.getElementById("target");
|
||
|
target.parentNode.removeChild(target);
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
body > span { border: 3px solid blue }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body onload='doit()'>
|
||
|
<span>
|
||
|
One
|
||
|
<div>Two</div>
|
||
|
<span id="target">Five</span>
|
||
|
<div>Three</div>
|
||
|
Four
|
||
|
</span>
|
||
|
</body>
|
||
|
</html>
|