I have this code:
<div id="infants-data"></div>
for( var i = 1; i <= 10; i++)
{
var currInfantDataField = '' +
'<div class="field">Infant ' + i + ': ' +
'<div style="width:600px">' +
'<select id="infant-' + i + '-title" style="border:solid 1px #cccccc;">'+
'<option selected>--Title--</option>' +
'<option value="master">Master</option>' +
'<option value="miss">Miss</option>' +
'</select>' +
'<input type="text" id="infant-' + i + '-surname" placeholder="Surname" style="width:110px; border:solid 1px #cccccc;">' +
'<input type="text" id="infant-' + i + '-othernames" placeholder="Othernames" style="width:120px; border:solid 1px #cccccc;">' +
'<input type="text" id="infant-' + i + '-birthdate" placeholder="Date of Birth" style="width:120px; border:solid 1px #cccccc;" readonly>' +
'</div>' +
'</div>';
document.getElementById('infants-data').innerHTML += currInfantDataField;
jQuery( "#infant-" + i + "-birthdate").datepicker({
changeMonth: true,
changeYear: true,
yearRange:'1900:<?php echo ( date('Y') - 2 ); ?>',
onSelect: (function(){doSomethingUsefulWithField("infant-" + i + "-birthdate")})
});
}
For some reason I can't explain, the datepicker is not working.
P.S I have tried this and several others like it but they did not work in my case, hence my asking this.