Set the value attribute of every matched element : val « jQuery « JavaScript DHTML






Set the value attribute of every matched element

    
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           $("button").click(function () {
             var text = $(this).text();
             $("input").val(text);
           });
        });
    </script>
  </head>
  <body>
    <body>
      Press button to fill the text box.
      <div>
        <button>A</button>
        <button>B</button>
        <button>C</button>
      </div>
      <input type="text" value="click a button" />
  </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 multiple value for select
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