Get body element, create a paragraph tag and a text node : createTextNode « Node Operation « JavaScript DHTML






Get body element, create a paragraph tag and a text node

 
<html>
<head>
    <title>Location</title>
    <script type = "text/javascript">
        function showProps() {
            var body = document.getElementsByTagName("body")[0];
            for (var prop in location) {
                var elem = document.createElement("p");
                var text = document.createTextNode(prop + ": " + location[prop]);
                elem.appendChild(text);
                body.appendChild(elem);
            }
        }
         
    </script>
</head>
<body onload="showProps()">
</body>
</html>

   
  








Related examples in the same category

1.'createTextNode()' Example