blob: a15fc479ea91637758db776f97612b856104633f [file] [log] [blame]
<html>
<head>
<title>Document Write In Onload</title>
<script>
function init() {
document.writeln('goodbye, world!');
}
</script>
</head>
<body onload="init();">
<p>hello world</p>
</body>
</html>