I have the following code:
$("#idSelect").editableSelect({
effects: 'fade',
duration: 'fast'
});
To take the value, I realize:
$("#idSelect").val(); // Funciona bien!
Now I want to take the HTML of the select (all OPTION):
$("#idSelect").html(); // Pero esto no funciona