Skip to content
Advertisement

keyup or change event on input hidden is not working

If the Hidden input takes its value from a text input, how can I monitor the change and implement something when changing the Hidden core value? example:

JavaScript
JavaScript

Advertisement

Answer

You can fire keyup explicitly using:

JavaScript

You have to just add this line:

$(‘#input1’).trigger(“keyup”);

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement