cara menambahkan nilai ke bidang input menggunakan jQuery
$("#resultsInput").val($("#resultsInput").val() + temp_string);
Unusual Unicorn
$("#resultsInput").val($("#resultsInput").val() + temp_string);
// Access the input inside the div with this selector:
$(function () {
$('.textBoxEmployeeNumber input').val("fgg");
});