Right now my .html file like this:
<body>
<h2 id="h2">Child</h2>
</body>
Here I want to make a parent div Element of #h2. Here I cannot replace body element... I want to create a parent div of h2 element like:-
I want my html file like this using vanilla JavaScript.
<body>
<div id="parent">
<h2 id="h2">Child</h2>
</div>
</body>