set data in input ttype with jaqwieryr code example
Example 1: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})
Example 2: change inptu val
//one of these 2 should suffice
$('#id').attr('value', 'xxx')
$('#id').val('xxx');