.after() in jQuery

It helps to inserts specified content after the selected elements.

.after()

// To insert content after each < p> element:

$(“button”).click(function(){
  $(“p”).after(“Hello world!”);

});