I\'m using JQuery to select some elements on a page and then move them around in the DOM. The problem I\'m having is I need to select all the elements in the reverse order t
Needed to do a reverse on $.each so i used Vinay idea:
//jQuery.each(collection, callback) => $.each($(collection).get().reverse(), callback func() {});
worked nicely, thanks