delete one element in mongodb code example
Example 1: javscript insert element after another
function insertAfter(newElement, referenceElement) {
referenceElement.parentNode.insertBefore(newElement, referenceElement.nextSibling);
}
var newElement = document.createElement("div");
newElement.innerHTML = "my New Div Text";
var myCurrentElement= document.getElementById("myElementID");
insertAfter(newElement, myCurrentElement);
Example 2: php delete element from array
$colors = array("red","blue","green");
unset($colors[1]);
$colors = array("red","blue","green");
array_splice($colors, 1, 1);