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); });
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); });
Please login to continue.