How to Get the Value in an Input Text Box and set value input box using jQuery code example
Example: set input value jquery
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
});
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
});