if (Drupal.jsEnabled) { $(document).ready(function() { $(".ctimer").each( function(i) { // arg i is the position in the each fieldset var aucId = $(this).attr('id'); var ctime = $('#'+aucId).html(); var carray = ctime.split(','); $('#countdown_dashboard'+aucId).show(); $('#countdown_dashboard'+aucId).countDown({ targetDate: { 'day': carray[2], 'month': carray[1], 'year': carray[0], 'hour': carray[3], 'min': carray[4], 'sec': carray[5] } }); } ) }) }