I was wondering if its possible to add a date picker to this event for updating the taget_date?
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1;
var yyyy = today.getFullYear();
var current_date = dd+'/'+mm+'/'+yyyy;
var target_date = '26/9/2011';
if(current_date == target_date)
{
$("input[id^='addButton']").parents().eq(1).hide();
}
/regards