Skip to content

Instantly share code, notes, and snippets.

@cedufca
Created October 11, 2011 18:49
Show Gist options
  • Save cedufca/1279013 to your computer and use it in GitHub Desktop.
Save cedufca/1279013 to your computer and use it in GitHub Desktop.
//algo +/- assim
var eventos = $(".barra_lateral li.eu_vou").map(function() {
return {date: new Date($(this).attr("data_inicio")), element: li}
}).get()
eventos.sort(function(a, b){ return a.date < b.date })
$(".barra_lateral li.eu_vou").html($.map(eventos, function(e) { return e.element }))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment