'applyElement()' Example : applyElement « Node Operation « JavaScript DHTML






'applyElement()' Example

    
<script language="javascript">
function function1(){
   var myElement = document.createElement('<div style="width:600; height:200;background-color:blue;"></div>');
   document.all.myBody.applyElement(myElement, 'inside'); 
} 
</script>
<body id="myBody">
<button onclick="function1();">Apply element</button>
</body>
</html>

    
      
      








Related examples in the same category