how to get value while typeing code example
Example 1: how to get value from input field while typing
$('input[name="noofppl"]').keyup(function(){
console.log($(this).val());
});
$('input[name="noofppl"]').focusout(function(){
if($(this).val().length < 20){
alert("Minimum character is 20!!!");
}
});
Example 2: how to get value from input field while typing
$("#txt").keyup(function(event) {
text = $(this).val();
$("div").text(text);
});
$('#txt').focusout(function(){
if($(this).val().length < 20){
alert(" Minimum 20 Words required...!! ");
}
})