Set multiple value for select : val « jQuery « JavaScript DHTML






Set multiple value for select

    


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
          $("#multiple").val(["Multiple2", "Multiple3"]);
     

        });
    </script>
  </head>
  <body>
    <body>
       <select id="multiple" multiple="multiple">
            <option>Multiple</option>
            <option>Multiple2</option>
            <option>Multiple3</option>
      </select>
  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Get the input value of the first matched element
2.Set value for text field
3.Set the value attribute of every matched element
4.Set value to form input field
5.val(val) checks, or selects, all the radio buttons, checkboxes, and select options
6.Get input text from Text Box