Comment ajouter la valeur du champ de saisie à l'aide de 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");
});