js on change code example
Example 1: on change jquery
You can apply any one approach:
$("#Input_Id").change(function(){ // 1st
// do your code here
// When your element is already rendered
});
$("#Input_Id").on('change', function(){ // 2nd (A)
// do your code here
// It will specifically called on change of your element
});
$("body").on('change', '#Input_Id', function(){ // 2nd (B)
// do your code here
// It will filter the element "Input_Id" from the "body" and apply "onChange effect" on it
});
Example 2: onchange on select tag
<select id="comboA" onchange="getComboA(this)">
<option value="">Select combo</option>
<option value="Value1">Text1</option>
<option value="Value2">Text2</option>
<option value="Value3">Text3</option>
</select>
Example 3: js select on change value
document.getElementById('my-select').addEventListener('change', function() {
console.log('You selected: ', this.value);
});
Example 4: js html textbox on change
<input type="text" onkeydown="keydownFunction()"
onkeyup="keyupFunction()" onchange="changeFunction()">
Example 5: js addeventlistener change select
<input id="test" type="text" value="Sélectionnez-moi !" />
<script>
var elem = document.getElementById('test');
elem.addEventListener('select', function() {
alert('La sélection a changé !');
}, false);
</script>
Example 6: javascript input value change
function updateInput(ish){
document.getElementById("fieldname").value = ish;
}