To insert element in document after div element using JavaScript, get reference to the div element; call after() method on this div element; and pass the element to insert, as argument to after() method.
In the following example, we have div with id "myDiv", and we shall add a paragraph element after this div using after() method.
Append HTML after Div using JavaScript
Now, let us create a div element and insert this div after the element with id "myDiv" using after() method.
Append HTML after Div using JavaScript
When you click on Click Me button in the output of HTML, a new div will be added after the div element with id "myDiv".
First read the answer fully, then try to explain it in your own words. After that, open a few related questions and compare the concepts. This method helps you remember the topic for a longer time and improves exam preparation.