Get text value from a button and set it to form input text field in jQuery

Description

The following code shows how to get text value from a button and set it to form input text field.

Example


<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--  w w  w. j a  v a2  s.  c  om-->
$("button").click(function () {
var text = $(this).text();
$("input").val(text);
});
});
</script>
<style>
.selected { color:red; }
.highlight { background:yellow; }
</style>
</head>
<body>
<div>
<button>A</button>
<button>B</button>
<button>C</button>
</div>
<input type="text" value="click a button" />
</body>
</html>

Click to view the demo

The code above generates the following result.

Get text value from a button and set it to form input text field in jQuery
Home »
  Javascript Tutorial »
    jQuery »
      jQuery Form
...
Add action to button with ID in jQuery
Bind and unbind events to the button in jQu...
Bind click action to button in jQuery
Cancel submit event by returning false in j...
Change form text field color and value in j...
Change text color for input element in jQue...
Change the button text with replaceWith met...
Check the check box in jQuery
Click the button to enable the input next t...
Create a button clone and insert it after t...
Disable buttons whose index is greater than...
Fire focus event in jQuery
Get input text from Text Box in jQuery
Get multiple selected value in jQuery
Get selected items from form select control...
Get single selected value from select in jQ...
Get text from button and set the value to i...
Get text value from a button and set it to ...
Get the input value of the first matched se...
Get value for each form element in jQuery
Handle focus event fired when an element re...
Handle form input Text box selected event i...
Handle form input Text input change event i...
Handle form inut key up event in jQuery
Hide all the input elements within a form i...
Invoke Submit Event in jQuery
Make a form input text element editable and...
Pre-select multiple select option in jQuery
Pre-select options in form select element i...
Preselect checkbox in jQuery
Preset form radio button in jQuery
Select all selected items from form select ...
Select checkbox from a list of form control...
Select checked checkbox in jQuery
Select disabled button and get the its next...
Select form button and check element list l...
Select form file input field in jQuery
Select form image control in jQuery
...