DOM Node JavaScript Tutorial

< html>

    removeChild() Example
    
        function removeMessage() {
            var oP = document.body.getElementsByTagName("p")[0];
            document.body.removeChild(oP);
        }
    


    

A


    

B


    

C