Skip to content

Instantly share code, notes, and snippets.

@liuxd
Created May 20, 2021 04:03
Show Gist options
  • Save liuxd/9554d614a47bc1b2474d93297a25521a to your computer and use it in GitHub Desktop.
Save liuxd/9554d614a47bc1b2474d93297a25521a to your computer and use it in GitHub Desktop.
[Reverse the elements in a target element] #jQuery
$.fn.reverseChildren = function() {
return this.each(function(){
var $this = $(this);
$this.children().each(function(){ $this.prepend(this) });
});
};
$('#target').reverseChildren();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment