I have results page. Each div has id with event date (Ymd). How can i sort those div's in "results" div by child div event date and eliminate div if the date is < OR = today? It should be really easy to do, but i'm not so good at jquery. Also it would be very great to have ability to change "today" variable time zone.
<div class="results">
<div class="item shadowbox route_entry" id="20150417">
Content
</div>
<div class="item shadowbox route_entry" id="20150422">
Content
</div>
<div class="item shadowbox route_entry" id="20150424">
Content
</div>
<div class="item shadowbox route_entry" id="20150427">
Content
</div>
<div class="item shadowbox route_entry" id="20150429">
Content
</div>
</div>
Thanks for help :)