Skip to content Skip to sidebar Skip to footer

(Javascript) Inserting Elements Dynamically In A Specific Position

Basically what I have is this:
...

Solution 1:

Create your own insertAfter function


Solution 2:

you can use JQuery it very simple

$(".class1").after( document.createTextNode("Hello") );

Post a Comment for "(Javascript) Inserting Elements Dynamically In A Specific Position"