Сообщение от soniclord
|
перед тегом </body>
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
window.onload = function() {
var addedElement = document.createElement('p');
addedElement.appendChild(document.createTextNode('Hello, world!'));
if (document.body.firstChild) {
document.body.insertBefore(addedElement, document.body.firstChild);
} else {
document.body.appendChild(addedElement);
}
}
</script>
</head>
<body>Что-то есть!
</body>
</html>