jQuery cuando escribe la entrada
$('input[name="noofppl"]').keyup(function(){
console.log($(this).val());
});
Ugliest Unicorn
$('input[name="noofppl"]').keyup(function(){
console.log($(this).val());
});
$('input').on('input propertychange', ()=>{});
$("#someDiv").bind("DOMSubtreeModified", function() {
alert("tree changed");
});
$("#textInput").val() // To get value of element textInput
// On element change.
$('mydiv').bind('DOMSubtreeModified', function () {
console.log('changed');
});
$(".formData").val("valuesgoeshere")