Skip to content

Instantly share code, notes, and snippets.

@kourindouhime
Created March 19, 2016 22:44
Show Gist options
  • Save kourindouhime/14a4d9bbd825581030b6 to your computer and use it in GitHub Desktop.
Save kourindouhime/14a4d9bbd825581030b6 to your computer and use it in GitHub Desktop.
it = []; $(".featured-list-item").each(function() { it.push([$(this).find("h2").find("a").html(), parseFloat($(this).find("p").find("strong").html().replace("as low as $", ""))]); }); it = it.sort(function(a, b){ var x=a[1]; var y=b[1]; return y-x; }); $.each(it, function() { console.log(this); })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment