Get text of the selected option with jQuery [duplicate]

Solution 1:

Close, you can use

$('#select_2 option:selected').html()

Solution 2:

$(document).ready(function() {
    $('select#select_2').change(function() {
        var selectedText = $(this).find('option:selected').text();
        alert(selectedText);
    });
});

Fiddle