/ Published in: JavaScript
Vert useful function since there isn't an insertAfter function in the DOM. Call it inside scripts, it expects insertAfter(the new element to be inserted, the element you want it to be inserted after);
Expand |
Embed | Plain Text
//create function, it expects 2 values. function insertAfter(newElement,targetElement) { //target is what you want it to go after. Look for this elements parent. var parent = targetElement.parentNode; //if the parents lastchild is the targetElement... if(parent.lastchild == targetElement) { //add the newElement after the target element. parent.appendChild(newElement); } else { // else the target has siblings, insert the new element between the target and it's next sibling. parent.insertBefore(newElement, targetElement.nextSibling); } }
Comments
Subscribe to comments
You need to login to post a comment.

Hey 1man -- I've got a client who is interested in this snippet, but is a little cautious regarding copyright. Any chance of putting this explicitly under an apache 2 license?