jquery add input value code example
Example 1: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})
Example 2: how to append value to input field using jquery
$("#resultsInput").val($("#resultsInput").val() + temp_string);