input add value jquery 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);
Example 3: jquery html input value add
// Access the input inside the div with this selector:
$(function () {
$('.textBoxEmployeeNumber input').val("fgg");
});