I need to get "ID" of option instead of value.
Example.
<select id="industry">
<option id ="1" value="11">one</option>
<option id ="2" value="22">Two</option>
</select>
I know I can get values using the following
$("#industry").on("change",function(){
var GetValue=$("#industry").val();
});
Is the any option to get Id