Hola:
Estoy intentando utilizar el datepicker de jquery, el código es este:
$('#inputDate').DatePicker({
format:'m/d/Y',
date: $('#inputDate').val(),
current: $('#inputDate').val(),
starts: 1,
position: 'r',
onBeforeShow: function(){
$('#inputDate').DatePickerSetDate($('#inputDate'). val(), true);
},
onChange: function(formated, dates){
$('#inputDate').val(formated);
if ($('#closeOnSelect input').attr('checked')) {
$('#inputDate').DatePickerHide();
}
}
});
El problema es que en mi caso el elemento con id inputDate se genera dinámicamente, ¿cómo hago para que se detecte el evento y se muestre el calendario?