Move an element one place up or down in the dom tree with javascript July 22, 2023 by Tarik With jQuery: var e = $("#div_2"); // move up: e.prev().insertAfter(e); // move down: e.next().insertBefore(e);