this value getting in jquery code example
Example 1: jquery value of input
$("#textInput").val() // To get value of element textInput
Example 2: jquery set textbox value
$.get('compz.php?prodid=' + x + '&qbuys=' + y, function(data) {
$('#subtotal').val(data);
});