give input value through jquery code example
Example 1: 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("");
Example 2: jquery html input value add
// Access the input inside the div with this selector:
$(function () {
$('.textBoxEmployeeNumber input').val("fgg");
});