Skip to content

Instantly share code, notes, and snippets.

@RANUX
Created September 6, 2016 12:59
Show Gist options
  • Save RANUX/946552764c8f6d6a8c5caa21f79f91e7 to your computer and use it in GitHub Desktop.
Save RANUX/946552764c8f6d6a8c5caa21f79f91e7 to your computer and use it in GitHub Desktop.
Reverse elements order with jQuery
$('.video_item_title').toArray().reverse().forEach(
function(i){
console.log($(i).text())
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment