creando el campo:
Código:
Y aquí cuando intento acceder al valor de dicho campo:caja.append('<label>Tamaño:</label>
<select name="tamano_stand_'+a+'" id="tamano_stand_'+a+'">
<option value="">Selecciona un tamaño</option>
<?php foreach($qry_tamanos_stand as $row_tamanos_stand){?>
<option value="<?php echo $row_tamanos_stand['tamano_stand'];?>"><?php echo $row_tamanos_stand['tamano_stand'];?></option><?php }?>
</select><br>');
Código:
Me devuelve siempre undefined :/ alguien sabe que es lo que está mal?alert($('#tamano_stand_'+a).val());
Muchísimas gracias por adelantado.


