This is Robert and I've got some troubles with JavaScript.
I got an <input value="DATE" hidden="">
(which is hidden).
The only thing I want to ask you is: I want to check if the date in <input value="">
is passed. If it is passed I want to change the background color of the container in CSS. Unfortunately I don't know how to do this.
If it's possible to convert the input value e.G value="03/08/2017" automatically to <div class="tag">AUG</div>
and <div class="monat">03</div>
. So if I update the value through my CMS I want to update the 03/AUG also. So if value="28/12/2017" the result schould be automatically DEZ and 28
I hope you could follow me. Cheers.
<script type="text/javascript">
$("tr").sort(function(a,b){
String date = new Date($(a).find("input").val()).getDate();
if(date < Date.now){
//Change the background color of eventscontainer to red
}
}).appendTo("tbody")
</script>
<table border="0">
<thead>
</thead>
<tbody>
<!-- SPALTE 1-->
<tr>
<td>
<input value="03/08/2017">
<div class="tag">AUG </div>
<br/>
<div class="monat">03 </div>
</td>
<td class="info">
<div class="information">
<img src="musik1.png" width="20em" height="20em" style="margin-bottom: 1%;">
Charts, EDM, HipHop
<br/> <img src="location.png" width="20em" height="20em" style="margin-bottom: 1%;">
Wien, Österreich<br/>
<img src="dj.png" width="25em" height="25em" style="margin-bottom: 1%;">
Club Ypsilon
</div>
</td>
<td class="tag-ausgeschrieben"><br/>
fr </td>
</tr>
</tbody>
</table>