jquery get all select options

JavaScript
//looping through options select with jQuery
$("#mySelectID option").each(function(){
    var thisOptionValue=$(this).val();
});
Source

Also in JavaScript: