Hola gente , estoy trabajando con Jquery y sus calendarios . El problema que tengo es que tengo campos que se generan de forma automática y no se como puedo hacer que la id del input que cargue el calendario pueda ser dinámica; me explico con código mejor:
Código:
<div id="div_1">
<span>Nombre</span>
<input type="text" name="name[]" style="width:200px;" id="nombre1" />
<span>Dni:</span>
<input type="text" name="vatnumber[]" style="width:140px;" />
Fecha<input type="text" name="fecha[]" style="width:90px;" value="" id="fecha1" />
<input class="bt_plus" id="1" type="button" value="more" />
<script type="text/javascript">
/* calendarios */
$("#fecha1").datepicker({
showOn: 'both',
buttonImage: 'fns/calendar.png',
buttonImageOnly: true,
changeYear: true,
numberOfMonths: 2,
/* onSelect: function(textoFecha, objDatepicker){
$("#mensaje").html("<p>Has seleccionado: " + textoFecha + "</p>");
}*/
});
</script>
</div>
El tema es que la línea $("#fecha1").datepicker({ necesito que el #fecha1 sea dinámico ,es decir que cambie según el input que afecte #fecha1 ,#fecha2, #fecha3 o los que sean.
Agradezco cualquier sugerencia.
Mil tks.