Lấy danh sách từ HTML Select Options Collection
Theo tên: <select name="group"...
$('select[name=group]').each(function()
{
console.log($(this).text());
});
Theo id: <select id="Job"...
$('#Job').each(function()
{
console.log($(this).text());
});
$('select[name=group]').each(function()
{
console.log($(this).text());
});
$('#Job').each(function()
{
console.log($(this).text());
});