Get selected value from select : Form Select « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           function displayVals() {
              var singleValues = $("#single").val();
              $("p").html(singleValues);
           }
           $("select").change(displayVals);
        });
    </script>
  </head>
  <body>
    <body>
      <p></p>
      <select id="single">
        <option>Single</option>
        <option>Single2</option>
      </select>

  </body>
</html>








30.124.Form Select
30.124.1.Get all selected items from form select control
30.124.2.Set select option
30.124.3.Get selected items from form select control
30.124.4.Get multiple selected value
30.124.5.Get selected value from select
30.124.6.Select single select option
30.124.7.Select multiple select option