jquery update input value code example
Example 1: jquery value of input
$("#textInput").val() // To get value of element textInput
Example 2: get value of input jqueyr
var str = $("#myInput"). val();
Example 3: jquery change value of input
$('selector').val('new value');
Example 4: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})
Example 5: 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 6: javascript change input value jquery
$('#IdOfTheField').on('change', function() {
alert( this.value );
});