selection.lower()
Re-inserts each selected element, in order, as the first child of its parent. Equivalent to:
1 2 3 | 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:
1 2 3 | selection.each( function () { this .parentNode.insertBefore( this , this .parentNode.firstChild); }); |
Designed by : w10schools
service@w10schools.com
Please login to continue.