how to add new value to input in jquery code example
Example 1: how to append value to input field using jquery
$("#resultsInput").val($("#resultsInput").val() + temp_string);
Example 2: assign input text value jquery
<?= $this->Form->input('number_six', array(
'label' => false,
'class' => 'form-control number_six',
'maxlength' => "1" ,
'oninput' => "this.value=this.value.replace(/[^0-9]/g,'');"
));?>
$(".number_six").val("");