how to set the value of input text in jquery code example
Example 1: change input placeholder text jquery
$("input[type=password]").attr("placeholder", "Type your answer here");
Example 2: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})