Clear Html Screen

clear html screen
<html>
<head></head>
<body>
<p>This should not appear</p>

<script type="text/javascript">
document.body.innerHTML = '';
</script>

<p>This should appear.</p>
</body>
</html>

Leave a Comment