2021-06-01 11:24:34 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<p>Click the button to get the value of outer HTML before remove demo.</p>
|
|
|
|
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
|
|
|
|
<p>Click the button to get the value of outer HTML after remove demo.</p>
|
|
|
|
|
|
|
|
<button onclick="myFunction2()">Remove demo</button>
|
|
|
|
|
|
|
|
<p id="demo"></p>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function myFunction() {
|
|
|
|
var a = document.getElementsByTagName("HTML")[0];
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(a.outerHTML);
|
2021-06-01 11:24:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function myFunction2() {
|
|
|
|
document.getElementById('demo').remove();
|
|
|
|
var a = document.getElementsByTagName("HTML")[0];
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(a.outerHTML);
|
2021-06-01 11:24:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|