jquery set text of textbox code example
Example 1: jquery set textbox value
$.get('compz.php?prodid=' + x + '&qbuys=' + y, function(data) {
$('#subtotal').val(data);
});
Example 2: manually set jquery text box
$(".formData").val("valuesgoeshere")