how to set an input field with jquery code example
Example 1: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})
Example 2: set input value jquery
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
});