how to add value in input using jquery code example
Example 1: jquery value of input
$("#textInput").val() // To get value of element textInput
Example 2: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})