'appendChild()' Example : appendChild « Node Operation « JavaScript DHTML
- JavaScript DHTML
- Node Operation
- appendChild
'appendChild()' Example
<html>
<body>
<script language="javascript">
function function1(){
var myElement = document.createElement('<div style="width:600; height:200;background-color:blue;"></div>');
document.all.myBody.appendChild(myElement);
}
</script>
<body id="myBody"><button onclick="function1();">Append child</button></body>
</body>
</html>
Related examples in the same category