selection.lower()

selection.lower()

Re-inserts each selected element, in order, as the first child of its parent. Equivalent to:

selection.each(function() {
  this.parentNode.insertBefore(this, this.parentNode.firstChild);
});
doc_D3_Js
2016-11-24 10:28:55
Comments
Leave a Comment

Please login to continue.