// 현재 선택되어진 select box의 값 읽기 // Get selected value $("#myselectbox option:selected").val(); // Get selected text $("#myselectbox option:selected").text(); // Get selected index $("#myselectbox option").index($("#myselectbox option:selected")); // Select box의 Selected 값 설정 // Set the element at index 2 to be selected $("#myselect option:eq(2)").attr("selected", "selected"); // Set the selected el..