Ho fatto qualche passo in avanti, come id al posto di "countdown_dashboard" ho utilizzato una variabile associata all'id dei record e ottengo esattamente un id diverso per ogni riga dei record.<div id="<?php echo $item->id; ?>">
Il problema adesso è che non riesco ad inserire questo id nel codice javascript, ho creato una variabile jaavascript
var id = <?php echo '#'. $item->id; ?>;
ma non mi viene restituita come stringa.Questo il codice:<script language="javascript" type="text/javascript">
var s = <?php echo $item->durata; ?>;
var id = <?php echo '#'. $item->id; ?>;
jQuery(document).ready(function() {
$('id').countDown({
targetOffset: {
'day': 0,
'month': 0,
'year': 0,
'hour': 0,
'min': s,
'sec': 0
},
// onComplete function
onComplete: function RefreshWindow(){ window.location.reload(true);}
});
});
</script>
e questo il risultato:var s = 60;
var id = #1;
jQuery(document).ready(function() {
$('id').countDown({
targetOffset: {
'day': 0,
'month': 0,
'year': 0,
'hour': 0,
'min': s,
'sec': 0
},
// onComplete function
onComplete: function RefreshWindow(){ window.location.reload(true);}
});
});
Intanto aggiusto i css per l'id multiplo.
Grazie