I have a div element (#receivedInfo) with p elements inside of it. Each p element has a date in it. I managed to take out this date from each element and compare it to the current date.
After I compare each element to the current date, I want to move them in two divs:
- one to contain all elements that have a date higher than the current date (".licitatiiActive")
- the other to contain all the elements that have a lower date than the current date (".licitatiiInactive")
I managed to do the comparison, but all I can move is only one element.
Here is the HTML I use:
<div id="receivedInfo" class="hidden">
<p>16.10.2012 - <a href="#">test line 1</a></p>
<p>16.10.2012 - <a href="#">test line 2</a></p>
<p>16.10.2012 - <a href="#">test line 3</a></p>
<p>16.10.2012 - <a href="#">test line 4</a></p>
</div>
<div class="licitatiiActive"></div>
<div class="licitatiiInactive"></div>
And here is the jQuery I use:
var fullDate = new Date();
var twoDigitMonth = (fullDate.getMonth()+1)+"";
if(twoDigitMonth.length==1) twoDigitMonth="0" +twoDigitMonth;
var twoDigitDate = fullDate.getDate()+"";
if(twoDigitDate.length==1) twoDigitDate="0" +twoDigitDate;
var currentDate = twoDigitDate + "." + twoDigitMonth + "." + fullDate.getFullYear();
var dataLic;
var infoP;
$.each($("#receivedInfo p"), function () {
var info = $(this).html();
dataLic = info.split(' - ')[0].trim();
infoP = "<p>" + info + "</p>";
});
if (dataLic > currentDate) {
$(".licitatiiInactive").html(infoP);
} else {
$(".licitatiiActive").html(infoP);
}
As mentioned, the result is that only the first p element from div "#receivedInfo" is being moved to the div ".licitatiiInactive". How can I adjust this script to move each element of "#receivedInfo" to the proper div?