I need to understand the difference between the clone() and get() method, I have this code and I would like to know if the get() method creates a duplicate of the array and if I can just use the clone() method instead?
(function($){
$(document).ready(function(){
var lis = $("ol li").get().reverse();
$("ol").empty();
$.each(lis, function(i){
$("ol").append("<li>" + lis[i].innerHTML + "</li>");
});
});
})(jQuery);
When you ask something, make sure you provide proper details, like the version of jQuery, and the HTML code used.
This works for me in the fiddle.
http://jsfiddle.net/rejithrkrishnan/19ejv9j9/
I removed
(function($){})(jQuery);
from your code, because you don't need both this and$(document).ready(function() {});
This answer uses jQuery 1.8.3