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






'removeNode()' Example

    
<html>
<body>
<script language="JavaScript">
    function function1() {
        document.all.myB.removeNode(true);
    }
</script>
<button id="myB" onclick="function1();">Remove me</button>
</body>
</html>

    
      
      








Related examples in the same category