netsurf/test/js/event-onload.html

30 lines
515 B
HTML
Raw Normal View History

2012-11-19 21:26:23 +04:00
<html>
<head>
<title>createTextNode onload example</title>
<script type="text/javascript">
function addTextNode()
{
var newtext = document.createTextNode(" Some text added dynamically. ");
var para = document.getElementById("p1");
para.appendChild(newtext);
}
</script>
</head>
<body>
<div style="border: 1px solid red">
<p id="p1">First line of paragraph.<br /></p>
</div><br />
<button onclick="addTextNode();">add another textNode.</button>
<script>
window.onload = addTextNode;
</script>
</body>
</html>