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
x
6
1
$('#input2').on('keyup, change', function () {
2
$('#input1').val($(this).val());
3
});
4
$('#input1').on('keyup, change', function () {
5
$('#div').text( $('#input1').val() );
6
});
JavaScript
1
5
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
2
3
<input type="hidden" value="test" id="input1" />
4
<input type="text" value="test" id="input2" />
5
<div id="div">loading</div>
Advertisement
Answer
You can fire keyup explicitly using:
JavaScript
1
10
10
1
$('#input2').on('keyup, change', function () {
2
$('#input1').val($(this).val());
3
//Add this line
4
$('#input1').trigger("keyup");
5
6
});
7
$('#input1').on('keyup, change', function () {
8
$('#div').text( $('#input1').val() );
9
});
10
You have to just add this line:
$(‘#input1’).trigger(“keyup”);