JS Cara Mendapatkan Nilai SelectPicker

$(document).on('change', '#input_id', function() {
    var selected = $('#input_id').val();
});
Darkvent