jquery add value to input code example
Example 1: how to get a value using jquery
//for imput field given in HTML
<input type="text" id="myid" class="myclass" >
// Using ID to find value
$("#myid").val();
// Using Class to find value
$(".myclass").val();
Example 2: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})
Example 3: how to append value to input field using jquery
$("#resultsInput").val($("#resultsInput").val() + temp_string);
Example 4: 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 5: jquery html input value add
// Access the input inside the div with this selector:
$(function () {
$('.textBoxEmployeeNumber input').val("fgg");
});