0
I have several boxes with dates in html, example:
<div id="agenda">
<a href="javascript:void" class="web-thumb">
<span class="data">13 set</span>
<span class="hora">10h30</span>
<p class="tema green-sage">eSocial</p>
</a>
<a href="javascript:void" class="web-thumb">
<span class="data">13 set</span>
<span class="hora">14h</span>
<p class="tema green-sage">eSocial</p>
</a>
<a href="javascript:void" class="web-thumb">
<span class="data">14 set</span>
<span class="hora">10h30</span>
<p class="tema green-sage">eSocial</p>
</a>
</div>
I need to see jQuery the boxes with date lower than the system disappear.
Lower date, you say, is the current date?
– Leonel Sanches da Silva
The lower date is the one displayed within the <span class="date">
– Munir Baarini
Yes, but I will compare it to what other date, exactly? The current date?
– Leonel Sanches da Silva
That’s right! The current date.
– Munir Baarini