Created
September 6, 2016 12:59
-
-
Save RANUX/946552764c8f6d6a8c5caa21f79f91e7 to your computer and use it in GitHub Desktop.
Reverse elements order with jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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