Seleccionar valor de select - Prototype
Esto también te interesa!
PREGUNTAS SIMILARES
#3
var options = $$('select#mySelect option');
var len = options.length;
for (var i = 0; i < len; i++) {
console.log('Option text = ' + options[i].text);
console.log('Option value = ' + options[i].value);
}
options[1].selected = true;