im using bootstrap, how can i get the attribute of ie., gl_code_id
<select style="height: 400px;" multiple="" class="form-control" id="all_codes">
<option gl_code_id="9">2345 </option>
<option gl_code_id="8">12345 </option>
<option gl_code_id="7">1234 </option>
<option gl_code_id="6">90 </option>
<option gl_code_id="5">234 </option>
<option gl_code_id="4">1 </option>
</select>
tried this,
$(document).on("change", "#all_codes", function(){
var id = $("#all_codes").val(); //this gives only the value
var ids = $(this).attr('gl_code_id'); // this gives undefined
//how can i get the selected options gl_code_id??
});