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






Get selected value from select

    

<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>

   
    
    
    
  








Related examples in the same category

1.Get all selected items from form select control
2.Set select option
3.Get selected items from form select control
4.Get multiple selected value
5.Select single select option
6.Select multiple select option