Usando jQuery, ¿cómo puedo establecer dinámicamente el atributo de tamaño de un cuadro de selección?Usando jQuery, ¿cómo puedo establecer dinámicamente el atributo de tamaño de un cuadro de selección?
me gustaría incluirlo en este código:
$("#mySelect").bind("click",
function() {
$("#myOtherSelect").children().remove();
var options = '' ;
for (var i = 0; i < myArray[this.value].length; i++) {
options += '<option value="' + myArray[this.value][i] + '">' + myArray[this.value][i] + '</option>';
}
$("#myOtherSelect").html(options).attr [... use myArray[this.value].length here ...];
});
});