I want to get rid of Wordpress and publish a nice static webpage through amazon S3 and Cloudfront. The only 'dynamic' part of the website I have now (using wordpress) is a list of Tour Dates. Past events are not shown.
I like this feature, but I think there must be a way to do this using html and jQuery. Unfortunately I know nothing about the latter so I was really hoping for someone here to help me find the solution.
How to hide a table row if date in td is older than today's date? << That one I could not get to work, especially because there are a lot of other functions included I do not need.
What I need is a table, with some rows, each row has one cell containing a date (In european date format DD-MM-YY). As soon as the date is in the past, I would like the row to be hidden.
<table>
<tr>
<th>Date</th>
<th>Other stuff</th>
<th>Some more stuff</th>
</tr>
<tr>
<td>15-05-2015</td>
<td>Bla Bla Bla</td>
<td>Some more bla</td>
</tr>
<tr>
<td>11-07-2035</td>
<td>Bla Bla Bla 2</td>
<td>Some more bla 2</td>
</tr>
</table>
So in this case the first row with content would be hidden since it is in the past and the second one would be visible since its in the far future. Hopefully there is some easy solution for this!