jQuery select2 get value of select tag?
To get Select element you can use $('#first').val();
To get the text of selected value - $('#first :selected').text();
Can you please post your select2()
function code
$("#first").val(); // this will give you value of selected element. i.e. 1,2,3.